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:
parent
f93308ec17
commit
029dec8f3e
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user