diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-15 18:02:20 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-15 18:02:20 +0000 |
commit | 6dda032003306ab5fd383676979a59a3a98d6d12 (patch) | |
tree | ea12bb8290a8c301eb2a60b22351af5cf6ca0299 /llvm/lib/DebugInfo/DWARFCompileUnit.h | |
parent | ebdf32f9076074fe373a4bf47c332b9bf08f6405 (diff) | |
download | bcm5719-llvm-6dda032003306ab5fd383676979a59a3a98d6d12.tar.gz bcm5719-llvm-6dda032003306ab5fd383676979a59a3a98d6d12.zip |
DWARF: Print line tables per compile unit, so they get the right address size.
llvm-svn: 139808
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFCompileUnit.h')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFCompileUnit.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/DWARFCompileUnit.h b/llvm/lib/DebugInfo/DWARFCompileUnit.h index 378b6ced8cf..d9167292a9d 100644 --- a/llvm/lib/DebugInfo/DWARFCompileUnit.h +++ b/llvm/lib/DebugInfo/DWARFCompileUnit.h @@ -70,6 +70,14 @@ public: BaseAddr = base_addr; } + const DWARFDebugInfoEntryMinimal * + getCompileUnitDIE(bool extract_cu_die_only = true) { + extractDIEsIfNeeded(extract_cu_die_only); + if (DieArray.empty()) + return NULL; + return &DieArray[0]; + } + /// setDIERelations - We read in all of the DIE entries into our flat list /// of DIE entries and now we need to go back through all of them and set the /// parent, sibling and child pointers for quick DIE navigation. |