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:
NAKAMURA Takumi 2013-02-07 10:57:42 +00:00
parent 55f067de09
commit 8ff0631967

View File

@ -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);