Skip to content

Commit

Permalink
dwarfdump: add command line support for dumping the tu_index section
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252830 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
dwblaikie committed Nov 12, 2015
1 parent a8ea67e commit 4407efe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/llvm-dwarfdump/llvm-dwarfdump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ static cl::opt<DIDumpType> DumpType(
clEnumValN(DIDT_StrDwo, "str.dwo", ".debug_str.dwo"),
clEnumValN(DIDT_StrOffsetsDwo, "str_offsets.dwo",
".debug_str_offsets.dwo"),
clEnumValN(DIDT_CUIndex, "cu_index", ".debug_cu_index"), clEnumValEnd));
clEnumValN(DIDT_CUIndex, "cu_index", ".debug_cu_index"),
clEnumValN(DIDT_CUIndex, "tu_index", ".debug_tu_index"), clEnumValEnd));

static void error(StringRef Filename, std::error_code EC) {
if (!EC)
Expand Down

0 comments on commit 4407efe

Please sign in to comment.