mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
DWARF: Reset the state after parsing a line table prologue and remove an unnecessary lookup.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139859 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -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());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user