summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-11-11 00:28:42 +0000
committerBill Wendling <isanbard@gmail.com>2011-11-11 00:28:42 +0000
commit7b809e08b906755d71994a20479cbe781db9614d (patch)
treef84660f6c0ea3c682db6caa544167ae2db216ee2 /lib
parentb7f3bfc559f1ed541f8293ebb519cfb898dc757a (diff)
downloadllvm-7b809e08b906755d71994a20479cbe781db9614d.tar.gz
llvm-7b809e08b906755d71994a20479cbe781db9614d.tar.bz2
llvm-7b809e08b906755d71994a20479cbe781db9614d.tar.xz
Disable compact unwind generation until I can solve the codegen problems.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144346 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-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..0225afa80e 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 is causing failures in the test suite.
+ if (false && IsEH && MOFI->getCompactUnwindSection())
for (unsigned i = 0, n = Streamer.getNumFrameInfos(); i < n; ++i) {
const MCDwarfFrameInfo &Frame = Streamer.getFrameInfo(i);
if (Frame.CompactUnwindEncoding)