[llvm-commits] [llvm] r144351 - /llvm/trunk/lib/MC/MCDwarf.cpp

Bill Wendling isanbard at gmail.com
Thu Nov 10 17:03:50 PST 2011


Author: void
Date: Thu Nov 10 19:03:50 2011
New Revision: 144351

URL: http://llvm.org/viewvc/llvm-project?rev=144351&view=rev
Log:
Reenable compact unwinding now that <rdar://problem/10430076> is fixed.

Modified:
    llvm/trunk/lib/MC/MCDwarf.cpp

Modified: llvm/trunk/lib/MC/MCDwarf.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCDwarf.cpp?rev=144351&r1=144350&r2=144351&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCDwarf.cpp (original)
+++ llvm/trunk/lib/MC/MCDwarf.cpp Thu Nov 10 19:03:50 2011
@@ -1012,7 +1012,7 @@
   // 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)





More information about the llvm-commits mailing list