diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-05-06 23:33:07 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-05-06 23:33:07 +0000 |
commit | 684fc5331e698fb71efefe2bff4da9c8ad41a857 (patch) | |
tree | 0a3c7caad222bf45c5b3b706436de650e6b1c931 /llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | |
parent | f787ef1d96ffa1960ea9a16d45089c0c78958f1f (diff) | |
download | bcm5719-llvm-684fc5331e698fb71efefe2bff4da9c8ad41a857.tar.gz bcm5719-llvm-684fc5331e698fb71efefe2bff4da9c8ad41a857.zip |
DebugInfo: Support imported modules in lexical blocks
llvm-svn: 181271
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h index 2b180c6cc3f..8f08c63e649 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h @@ -94,9 +94,6 @@ class CompileUnit { /// DWARF version doesn't handle the language, return -1. int64_t getDefaultLowerBound() const; - /// getOrCreateContextDIE - Get context owner's DIE. - DIE *getOrCreateContextDIE(DIDescriptor Context); - public: CompileUnit(unsigned UID, unsigned L, DIE *D, AsmPrinter *A, DwarfDebug *DW, DwarfUnits *); @@ -372,6 +369,9 @@ public: /// createStaticMemberDIE - Create new static data member DIE. DIE *createStaticMemberDIE(DIDerivedType DT); + /// getOrCreateContextDIE - Get context owner's DIE. + DIE *getOrCreateContextDIE(DIDescriptor Context); + private: // DIEValueAllocator - All DIEValues are allocated through this allocator. |