diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-02-07 14:54:42 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-02-07 14:54:42 +0000 |
commit | 14727d7c685fc43b28d0722c411ed07a2cef3e98 (patch) | |
tree | 42ecaf69dd5bf08e135ec050753ccf5da41e7de9 /llvm/lib/DebugInfo/DWARFDebugFrame.cpp | |
parent | 50e5924e434c3c521c2b3949871535e2e03b8a2d (diff) | |
download | bcm5719-llvm-14727d7c685fc43b28d0722c411ed07a2cef3e98.tar.gz bcm5719-llvm-14727d7c685fc43b28d0722c411ed07a2cef3e98.zip |
FDE::dumpHeader(): Forgot to fix one more formatting, ... take two!
Excuse me, I could not test it locally.
llvm-svn: 174614
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugFrame.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFDebugFrame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugFrame.cpp b/llvm/lib/DebugInfo/DWARFDebugFrame.cpp index b70a28537e3..244ff4c1a1e 100644 --- a/llvm/lib/DebugInfo/DWARFDebugFrame.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugFrame.cpp @@ -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"; |