[llvm] r284540 - dwarfdump: add space missing from the type unit header description

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 18 14:18:44 PDT 2016


Author: dblaikie
Date: Tue Oct 18 16:18:43 2016
New Revision: 284540

URL: http://llvm.org/viewvc/llvm-project?rev=284540&view=rev
Log:
dwarfdump: add space missing from the type unit header description

Modified:
    llvm/trunk/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp

Modified: llvm/trunk/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp?rev=284540&r1=284539&r2=284540&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp (original)
+++ llvm/trunk/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp Tue Oct 18 16:18:43 2016
@@ -45,7 +45,7 @@ void DWARFTypeUnit::dump(raw_ostream &OS
      << " version = " << format("0x%04x", getVersion())
      << " abbr_offset = " << format("0x%04x", getAbbreviations()->getOffset())
      << " addr_size = " << format("0x%02x", getAddressByteSize())
-     << "name = '" << Name << "'"
+     << " name = '" << Name << "'"
      << " type_signature = " << format("0x%16" PRIx64, TypeHash)
      << " type_offset = " << format("0x%04x", TypeOffset)
      << " (next unit at " << format("0x%08x", getNextUnitOffset()) << ")\n";




More information about the llvm-commits mailing list