From: David Blaikie Date: Thu, 12 Nov 2015 00:42:49 +0000 (+0000) Subject: dwarfdump: add command line support for dumping the tu_index section X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4407efe860ce7d974e4952fb2d8869d39996fdb1;p=oota-llvm.git dwarfdump: add command line support for dumping the tu_index section git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252830 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-dwarfdump/llvm-dwarfdump.cpp b/tools/llvm-dwarfdump/llvm-dwarfdump.cpp index 8bf9225d6df..7de712f252d 100644 --- a/tools/llvm-dwarfdump/llvm-dwarfdump.cpp +++ b/tools/llvm-dwarfdump/llvm-dwarfdump.cpp @@ -69,7 +69,8 @@ static cl::opt 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)