From 69494a9805ef6ffbfa35bad41ab234765f433339 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Tue, 18 Oct 2016 21:18:43 +0000 Subject: [PATCH] dwarfdump: add space missing from the type unit header description llvm-svn: 284540 --- llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp b/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp index 0338b40..38ed3ae 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"; -- 2.7.4