1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Revert r117876 for now, it's causing more testsuite failures.

llvm-svn: 117879
This commit is contained in:
Eric Christopher 2010-10-31 22:42:55 +00:00
parent 13936421e6
commit 7295ed492c

View File

@ -276,11 +276,9 @@ 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);