1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 20:23:11 +01:00

Disable this peephole for now. We can't keep track of the fact that the immediate is 8 bits,

but the memory reference is full sized.

llvm-svn: 11536
This commit is contained in:
Chris Lattner 2004-02-17 07:36:32 +00:00
parent f93308ec17
commit 029dec8f3e

View File

@ -93,6 +93,7 @@ bool PH::PeepholeOptimize(MachineBasicBlock &MBB,
}
return false;
#if 0
case X86::IMULrmi16: case X86::IMULrmi32:
assert(MI->getNumOperands() == 6 && "These should all have 6 operands!");
if (MI->getOperand(5).isImmediate()) {
@ -117,6 +118,7 @@ bool PH::PeepholeOptimize(MachineBasicBlock &MBB,
}
}
return false;
#endif
case X86::ADDri16: case X86::ADDri32:
case X86::ADDmi16: case X86::ADDmi32: