mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-13 07:50:50 +00:00
FDE::dumpHeader(): Forgot to fix one more formatting. It affected bigendian hosts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174602 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
55f067de09
commit
8ff0631967
@ -108,8 +108,9 @@ public:
|
||||
OS << format("%08x %08x %08x FDE ",
|
||||
(uint32_t)Offset, (uint32_t)Length, LinkedCIEOffset);
|
||||
OS << format("cie=%08x pc=%08x...%08x\n",
|
||||
(uint32_t)LinkedCIEOffset, (uint32_t)InitialLocation,
|
||||
InitialLocation + AddressRange);
|
||||
(uint32_t)LinkedCIEOffset,
|
||||
(uint32_t)InitialLocation,
|
||||
(uint32_t)InitialLocation + (uint32_t)AddressRange);
|
||||
OS << "\n";
|
||||
if (LinkedCIE) {
|
||||
OS << format("%p\n", LinkedCIE);
|
||||
|
Loading…
x
Reference in New Issue
Block a user