diff options
author | David Blaikie <dblaikie@gmail.com> | 2016-10-18 21:18:43 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2016-10-18 21:18:43 +0000 |
commit | 69494a9805ef6ffbfa35bad41ab234765f433339 (patch) | |
tree | d505fa42d7bbd59051135bb134857c559bba8ac9 /llvm/lib/DebugInfo | |
parent | e4c3915a5adbfedddc182647d3cad12ba30304d3 (diff) | |
download | bcm5719-llvm-69494a9805ef6ffbfa35bad41ab234765f433339.tar.gz bcm5719-llvm-69494a9805ef6ffbfa35bad41ab234765f433339.zip |
dwarfdump: add space missing from the type unit header description
llvm-svn: 284540
Diffstat (limited to 'llvm/lib/DebugInfo')
-rw-r--r-- | llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp b/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp index 0338b409675..38ed3aeaaf3 100644 --- a/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp +++ b/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp @@ -45,7 +45,7 @@ void DWARFTypeUnit::dump(raw_ostream &OS, bool SummarizeTypes) { << " 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"; |