Handle moves specially with move-insertion logic rather than ordinary operand/inst handling

This commit is contained in:
Chris Fallin
2021-05-06 18:49:23 -07:00
parent 747c56c2c3
commit e2beb471c4
2 changed files with 260 additions and 39 deletions

View File

@@ -130,7 +130,7 @@ impl Function for Func {
&self.reftype_vregs[..]
}
fn is_move(&self, _: Inst) -> Option<(VReg, VReg)> {
fn is_move(&self, insn: Inst) -> Option<(VReg, VReg)> {
None
}