The testcase is now XFAILed. Sorry about the breakage.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117904 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2010-11-01 05:50:55 +00:00
parent 59707e8055
commit 9e7cb3d243

View 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);