The testcase is now XFAILed. Sorry about the breakage.
authorBill Wendling <isanbard@gmail.com>
Mon, 1 Nov 2010 05:50:55 +0000 (05:50 +0000)
committerBill Wendling <isanbard@gmail.com>
Mon, 1 Nov 2010 05:50:55 +0000 (05:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117904 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/PeepholeOptimizer.cpp

index 210f8866dfea276da270bd56a437ab72062fdb93..e27ea153d15909f3340977c233aa62cf2d6585dd 100644 (file)
@@ -276,9 +276,11 @@ bool PeepholeOptimizer::runOnMachineFunction(MachineFunction &MF) {
 
       if (MI->getDesc().isCompare() &&
           !MI->getDesc().hasUnmodeledSideEffects()) {
+#if 0
         if (OptimizeCmpInstr(MI, MBB, MII))
           Changed = true;
         else
+#endif
           ++MII;
       } else {
         Changed |= OptimizeExtInstr(MI, MBB, LocalMIs);