[llvm] r191330 - llvm-dwarfdump: re-add field formatting for the entry kind lost in r191329

David Blaikie dblaikie at gmail.com
Tue Sep 24 12:56:27 PDT 2013


Author: dblaikie
Date: Tue Sep 24 14:56:27 2013
New Revision: 191330

URL: http://llvm.org/viewvc/llvm-project?rev=191330&view=rev
Log:
llvm-dwarfdump: re-add field formatting for the entry kind lost in r191329

CR feedback from Eric Christopher

Modified:
    llvm/trunk/lib/DebugInfo/DWARFContext.cpp

Modified: llvm/trunk/lib/DebugInfo/DWARFContext.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARFContext.cpp?rev=191330&r1=191329&r2=191330&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/DWARFContext.cpp (original)
+++ llvm/trunk/lib/DebugInfo/DWARFContext.cpp Tue Sep 24 14:56:27 2013
@@ -45,7 +45,7 @@ static void dumpPubSection(raw_ostream &
     PubIndexEntryDescriptor desc(pubNames.getU8(&offset));
     OS << format("0x%8.8x ", dieRef)
        << format("%-8s", dwarf::GDBIndexEntryLinkageString(desc.Linkage)) << ' '
-       << dwarf::GDBIndexEntryKindString(desc.Kind) << " \""
+       << format("%-8s", dwarf::GDBIndexEntryKindString(desc.Kind))
        << pubNames.getCStr(&offset) << "\"\n";
   }
 }





More information about the llvm-commits mailing list