mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
FDE::dumpHeader(): Forgot to fix one more formatting, ... take two!
Excuse me, I could not test it locally. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174614 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
07b59ba697
commit
d9a8d43ed3
@ -106,9 +106,9 @@ public:
|
||||
|
||||
void dumpHeader(raw_ostream &OS) const {
|
||||
OS << format("%08x %08x %08x FDE ",
|
||||
(uint32_t)Offset, (uint32_t)Length, LinkedCIEOffset);
|
||||
(uint32_t)Offset, (uint32_t)Length, (int32_t)LinkedCIEOffset);
|
||||
OS << format("cie=%08x pc=%08x...%08x\n",
|
||||
(uint32_t)LinkedCIEOffset,
|
||||
(int32_t)LinkedCIEOffset,
|
||||
(uint32_t)InitialLocation,
|
||||
(uint32_t)InitialLocation + (uint32_t)AddressRange);
|
||||
OS << "\n";
|
||||
|
Loading…
Reference in New Issue
Block a user