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.

llvm-svn: 144543
This commit is contained in:
Bob Wilson 2011-11-14 18:21:07 +00:00
parent 7e07b388ac
commit 8d1c7dbdff
1 changed files with 2 additions and 1 deletions

View File

@ -1011,7 +1011,8 @@ void MCDwarfFrameEmitter::Emit(MCStreamer &Streamer,
// 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)