projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
07b59ba
)
FDE::dumpHeader(): Forgot to fix one more formatting, ... take two!
author
NAKAMURA Takumi
<geek4civic@gmail.com>
Thu, 7 Feb 2013 14:54:42 +0000
(14:54 +0000)
committer
NAKAMURA Takumi
<geek4civic@gmail.com>
Thu, 7 Feb 2013 14:54:42 +0000
(14:54 +0000)
Excuse me, I could not test it locally.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174614
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/DebugInfo/DWARFDebugFrame.cpp
patch
|
blob
|
history
diff --git
a/lib/DebugInfo/DWARFDebugFrame.cpp
b/lib/DebugInfo/DWARFDebugFrame.cpp
index b70a28537e34c612293e4cabf051f38446a341ab..244ff4c1a1eb2f274430b8743441a03501c1d53c 100644
(file)
--- 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",
- (
u
int32_t)LinkedCIEOffset,
+ (int32_t)LinkedCIEOffset,
(uint32_t)InitialLocation,
(uint32_t)InitialLocation + (uint32_t)AddressRange);
OS << "\n";