summaryrefslogtreecommitdiff
path: root/lib/MC/MCDwarf.cpp
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2011-11-14 18:21:07 +0000
committerBob Wilson <bob.wilson@apple.com>2011-11-14 18:21:07 +0000
commit96b685b4aadef3c273fead1ea8788e1452d7bbea (patch)
treece63585563893fafb39d2a21997129974f41d173 /lib/MC/MCDwarf.cpp
parent4a9b615f3ee35dc9ef50e241d0ee1e6fba33c571 (diff)
downloadllvm-96b685b4aadef3c273fead1ea8788e1452d7bbea.tar.gz
llvm-96b685b4aadef3c273fead1ea8788e1452d7bbea.tar.bz2
llvm-96b685b4aadef3c273fead1ea8788e1452d7bbea.tar.xz
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144543 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCDwarf.cpp')
-rw-r--r--lib/MC/MCDwarf.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/MC/MCDwarf.cpp b/lib/MC/MCDwarf.cpp
index c274b9df63..d2bbd7d559 100644
--- a/lib/MC/MCDwarf.cpp
+++ b/lib/MC/MCDwarf.cpp
@@ -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)