mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
[WebAssembly] Remove check for FrameIndex operands in WebAssemblyPeephole
This pass runs after FrameIndex elimination, so it should never see FI operands. NFC llvm-svn: 258860
This commit is contained in:
parent
a30e120cbc
commit
e5897f542b
@ -114,7 +114,9 @@ bool WebAssemblyPeephole::runOnMachineFunction(MachineFunction &MF) {
|
|||||||
LibFunc::Func Func;
|
LibFunc::Func Func;
|
||||||
if (LibInfo.getLibFunc(Name, Func)) {
|
if (LibInfo.getLibFunc(Name, Func)) {
|
||||||
const auto &Op2 = MI.getOperand(2);
|
const auto &Op2 = MI.getOperand(2);
|
||||||
if (Op2.isReg()) {
|
if (!Op2.isReg())
|
||||||
|
report_fatal_error("Peephole: call to builtin function with "
|
||||||
|
"wrong signature, not consuming reg");
|
||||||
MachineOperand &MO = MI.getOperand(0);
|
MachineOperand &MO = MI.getOperand(0);
|
||||||
unsigned OldReg = MO.getReg();
|
unsigned OldReg = MO.getReg();
|
||||||
unsigned NewReg = Op2.getReg();
|
unsigned NewReg = Op2.getReg();
|
||||||
@ -122,13 +124,6 @@ bool WebAssemblyPeephole::runOnMachineFunction(MachineFunction &MF) {
|
|||||||
report_fatal_error("Peephole: call to builtin function with "
|
report_fatal_error("Peephole: call to builtin function with "
|
||||||
"wrong signature, from/to mismatch");
|
"wrong signature, from/to mismatch");
|
||||||
Changed |= MaybeRewriteToDiscard(OldReg, NewReg, MO, MFI, MRI);
|
Changed |= MaybeRewriteToDiscard(OldReg, NewReg, MO, MFI, MRI);
|
||||||
} else if (Op2.isFI()) {
|
|
||||||
break;
|
|
||||||
} else {
|
|
||||||
report_fatal_error("Peephole: call to builtin function with "
|
|
||||||
"wrong signature, not consuming reg or "
|
|
||||||
"frame index");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user