diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-11-02 03:09:13 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-11-02 03:09:13 +0000 |
commit | 871c2d9d63273e326dd7fac1ce70cd0a0b604b81 (patch) | |
tree | 5e3e0526beca1ea9baf6afc56ff72660aa1a4fb3 /llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | |
parent | ce47366150a3d4e3fc09b6851030d503da43b176 (diff) | |
download | bcm5719-llvm-871c2d9d63273e326dd7fac1ce70cd0a0b604b81.tar.gz bcm5719-llvm-871c2d9d63273e326dd7fac1ce70cd0a0b604b81.zip |
DebugInfo: Refactor index type DIE initialization by rolling it into the accessor
llvm-svn: 221080
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h index de43f8f507e..ce92b417536 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h @@ -430,7 +430,7 @@ private: } // getIndexTyDie - Get an anonymous type for index type. - DIE *getIndexTyDie() { return IndexTyDie; } + DIE *getIndexTyDie(); // setIndexTyDie - Set D as anonymous type for index which can be reused // later. |