From: NAKAMURA Takumi Date: Thu, 7 Feb 2013 14:54:42 +0000 (+0000) Subject: FDE::dumpHeader(): Forgot to fix one more formatting, ... take two! X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=14727d7c685fc43b28d0722c411ed07a2cef3e98;p=platform%2Fupstream%2Fllvm.git FDE::dumpHeader(): Forgot to fix one more formatting, ... take two! Excuse me, I could not test it locally. llvm-svn: 174614 --- diff --git a/llvm/lib/DebugInfo/DWARFDebugFrame.cpp b/llvm/lib/DebugInfo/DWARFDebugFrame.cpp index b70a285..244ff4c 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";