summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/DWARF
diff options
context:
space:
mode:
authorGeorge Rimar <grimar@accesssoftek.com>2017-04-28 08:54:10 +0000
committerGeorge Rimar <grimar@accesssoftek.com>2017-04-28 08:54:10 +0000
commit96a3de272904f5190a5f531a4e9096d304cac29a (patch)
tree1e3f0ff3a8333fe919d63c5ee9adbca47fb9bbd0 /llvm/lib/DebugInfo/DWARF
parent03e35b6bc0d95f9d5b389ab78259cfe54cd954f2 (diff)
downloadbcm5719-llvm-96a3de272904f5190a5f531a4e9096d304cac29a.tar.gz
bcm5719-llvm-96a3de272904f5190a5f531a4e9096d304cac29a.zip
[DWARF] - Fix mistype in dump output of pub* tables. NFC.
There was a garbage character in output introduced by myself in r290040 "[DWARF] - Introduce DWARFDebugPubTable class for dumping pub* sections." llvm-svn: 301631
Diffstat (limited to 'llvm/lib/DebugInfo/DWARF')
-rw-r--r--llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp b/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
index 662e53d9d7e..daded255f8c 100644
--- a/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
+++ b/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
@@ -45,7 +45,7 @@ DWARFDebugPubTable::DWARFDebugPubTable(StringRef Data, bool LittleEndian,
}
void DWARFDebugPubTable::dump(StringRef Name, raw_ostream &OS) const {
- OS << "\n." << Name << " contents: a\n";
+ OS << "\n." << Name << " contents:\n";
for (const Set &S : Sets) {
OS << "length = " << format("0x%08x", S.Length);
OS << " version = " << format("0x%04x", S.Version);
OpenPOWER on IntegriCloud