FDE::dumpHeader(): Forgot to fix one more formatting, ... take two!
authorNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 7 Feb 2013 14:54:42 +0000 (14:54 +0000)
committerNAKAMURA Takumi <geek4civic@gmail.com>
Thu, 7 Feb 2013 14:54:42 +0000 (14:54 +0000)
Excuse me, I could not test it locally.

llvm-svn: 174614

llvm/lib/DebugInfo/DWARFDebugFrame.cpp

index b70a285..244ff4c 100644 (file)
@@ -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";