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:
0fdb05d
)
Emit the compact unwind *if* we have a compact unwind encoding.
author
Bill Wendling
<isanbard@gmail.com>
Tue, 8 Nov 2011 22:23:43 +0000
(22:23 +0000)
committer
Bill Wendling
<isanbard@gmail.com>
Tue, 8 Nov 2011 22:23:43 +0000
(22:23 +0000)
*headdesk*
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144138
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/MC/MCDwarf.cpp
patch
|
blob
|
history
diff --git
a/lib/MC/MCDwarf.cpp
b/lib/MC/MCDwarf.cpp
index 49828080e01e1fb208accdbf6be6d8c88e2377a6..a68215ffe5173644e64cebcaa91947e71df3c4f2 100644
(file)
--- a/
lib/MC/MCDwarf.cpp
+++ b/
lib/MC/MCDwarf.cpp
@@
-1020,7
+1020,7
@@
void MCDwarfFrameEmitter::Emit(MCStreamer &Streamer,
if (IsEH && MOFI->getCompactUnwindSection())
for (unsigned i = 0, n = Streamer.getNumFrameInfos(); i < n; ++i) {
const MCDwarfFrameInfo &Frame = Streamer.getFrameInfo(i);
- if (
!
Frame.CompactUnwindEncoding)
+ if (Frame.CompactUnwindEncoding)
Emitter.EmitCompactUnwind(Streamer, Frame);
}