[llvm-commits] [llvm] r144543 - /llvm/trunk/lib/MC/MCDwarf.cpp
Bob Wilson
bob.wilson at apple.com
Mon Nov 14 10:21:07 PST 2011
Author: bwilson
Date: Mon Nov 14 12:21:07 2011
New Revision: 144543
URL: http://llvm.org/viewvc/llvm-project?rev=144543&view=rev
Log:
Disable generation of compact unwind encodings. <rdar://problem/10441578>
This still seems to be causing some failures. It needs more testing before
it gets enabled again.
Modified:
llvm/trunk/lib/MC/MCDwarf.cpp
Modified: llvm/trunk/lib/MC/MCDwarf.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCDwarf.cpp?rev=144543&r1=144542&r2=144543&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCDwarf.cpp (original)
+++ llvm/trunk/lib/MC/MCDwarf.cpp Mon Nov 14 12:21:07 2011
@@ -1011,7 +1011,8 @@
// Emit the compact unwind info if available.
// FIXME: This emits both the compact unwind and the old CIE/FDE
// information. Only one of those is needed.
- if (IsEH && MOFI->getCompactUnwindSection())
+ // FIXME: Disable. This seems to still be causing failures.
+ if (false && IsEH && MOFI->getCompactUnwindSection())
for (unsigned i = 0, n = Streamer.getNumFrameInfos(); i < n; ++i) {
const MCDwarfFrameInfo &Frame = Streamer.getFrameInfo(i);
if (Frame.CompactUnwindEncoding)
More information about the llvm-commits
mailing list