summaryrefslogtreecommitdiff
path: root/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/llvm-dwarfdump/llvm-dwarfdump.cpp')
-rw-r--r--tools/llvm-dwarfdump/llvm-dwarfdump.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/llvm-dwarfdump/llvm-dwarfdump.cpp b/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
index cf8b4d0806..076dcd10fb 100644
--- a/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
+++ b/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
@@ -52,6 +52,7 @@ static void DumpInput(const StringRef &Filename) {
StringRef DebugInfoSection;
StringRef DebugAbbrevSection;
StringRef DebugLineSection;
+ StringRef DebugArangesSection;
error_code ec;
for (ObjectFile::section_iterator i = Obj->begin_sections(),
@@ -67,11 +68,14 @@ static void DumpInput(const StringRef &Filename) {
DebugAbbrevSection = data;
else if (name.endswith("debug_line"))
DebugLineSection = data;
+ else if (name.endswith("debug_aranges"))
+ DebugArangesSection = data;
}
OwningPtr<DIContext> dictx(DIContext::getDWARFContext(/*FIXME*/true,
DebugInfoSection,
- DebugAbbrevSection));
+ DebugAbbrevSection,
+ DebugArangesSection));
dictx->dump(outs());
}