forked from OSchip/llvm-project
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
d1289d0fcd
commit
a9363fda17
|
@ -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