summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-11-11 01:03:50 +0000
committerBill Wendling <isanbard@gmail.com>2011-11-11 01:03:50 +0000
commitcf3b89f9a83e46494fba73dd7754df03e95b2b15 (patch)
tree898fb9fa71fe6a0e34a6f1abbc278bacfdae6570 /lib
parentc739577d3c2e5ee47baaf8b4ba259718ec2db4cc (diff)
downloadllvm-cf3b89f9a83e46494fba73dd7754df03e95b2b15.tar.gz
llvm-cf3b89f9a83e46494fba73dd7754df03e95b2b15.tar.bz2
llvm-cf3b89f9a83e46494fba73dd7754df03e95b2b15.tar.xz
Reenable compact unwinding now that <rdar://problem/10430076> is fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144351 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/MC/MCDwarf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MC/MCDwarf.cpp b/lib/MC/MCDwarf.cpp
index 0225afa80e..b68fcaf956 100644
--- a/lib/MC/MCDwarf.cpp
+++ b/lib/MC/MCDwarf.cpp
@@ -1012,7 +1012,7 @@ void MCDwarfFrameEmitter::Emit(MCStreamer &Streamer,
// FIXME: This emits both the compact unwind and the old CIE/FDE
// information. Only one of those is needed.
// FIXME: Disable. This is causing failures in the test suite.
- if (false && IsEH && MOFI->getCompactUnwindSection())
+ if (IsEH && MOFI->getCompactUnwindSection())
for (unsigned i = 0, n = Streamer.getNumFrameInfos(); i < n; ++i) {
const MCDwarfFrameInfo &Frame = Streamer.getFrameInfo(i);
if (Frame.CompactUnwindEncoding)