aboutsummaryrefslogtreecommitdiff
path: root/lib/DebugInfo/DWARFDebugFrame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/DebugInfo/DWARFDebugFrame.cpp')
-rw-r--r--lib/DebugInfo/DWARFDebugFrame.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/DebugInfo/DWARFDebugFrame.cpp b/lib/DebugInfo/DWARFDebugFrame.cpp
index b70a28537e..244ff4c1a1 100644
--- a/lib/DebugInfo/DWARFDebugFrame.cpp
+++ b/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";