summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/DWARFDebugAranges.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2011-09-15 21:59:13 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2011-09-15 21:59:13 +0000
commit112ec17e1b536cf292e168696b3ebcd173e249f3 (patch)
tree691ae58e197679c8a7f7b3134414a00f67c2fdb6 /llvm/lib/DebugInfo/DWARFDebugAranges.cpp
parent0be3ede9e1172fac7ff9fe5d7966d1bd30f14dba (diff)
downloadbcm5719-llvm-112ec17e1b536cf292e168696b3ebcd173e249f3.tar.gz
bcm5719-llvm-112ec17e1b536cf292e168696b3ebcd173e249f3.zip
DWARF: Reset the state after parsing a line table prologue and remove an unnecessary lookup.
llvm-svn: 139859
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugAranges.cpp')
-rw-r--r--llvm/lib/DebugInfo/DWARFDebugAranges.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugAranges.cpp b/llvm/lib/DebugInfo/DWARFDebugAranges.cpp
index 5053e19b71c..576d37d7813 100644
--- a/llvm/lib/DebugInfo/DWARFDebugAranges.cpp
+++ b/llvm/lib/DebugInfo/DWARFDebugAranges.cpp
@@ -100,7 +100,7 @@ void DWARFDebugAranges::dump(raw_ostream &OS) const {
const uint32_t num_ranges = getNumRanges();
for (uint32_t i = 0; i < num_ranges; ++i) {
const Range &range = Aranges[i];
- OS << format("0x%8.8x: [0x%8.8llx - 0x%8.8llx)", range.Offset,
+ OS << format("0x%8.8x: [0x%8.8llx - 0x%8.8llx)\n", range.Offset,
(uint64_t)range.LoPC, (uint64_t)range.HiPC());
}
}
OpenPOWER on IntegriCloud