Disable compact unwind generation until I can solve the codegen problems.
authorBill Wendling <isanbard@gmail.com>
Fri, 11 Nov 2011 00:28:42 +0000 (00:28 +0000)
committerBill Wendling <isanbard@gmail.com>
Fri, 11 Nov 2011 00:28:42 +0000 (00:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144346 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCDwarf.cpp

index c274b9df63ae3dd23808ca0ea7263cb1c9d8e040..0225afa80e4568ee98dca1983d51820ec37f4573 100644 (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 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)