From 14727d7c685fc43b28d0722c411ed07a2cef3e98 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Thu, 7 Feb 2013 14:54:42 +0000 Subject: [PATCH] FDE::dumpHeader(): Forgot to fix one more formatting, ... take two! Excuse me, I could not test it locally. llvm-svn: 174614 --- llvm/lib/DebugInfo/DWARFDebugFrame.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; -- 2.7.4