Add iabs instructions.rs

This is necessary for implementing SIMD [abs](https://github.com/WebAssembly/simd/blob/master/proposals/simd/SIMD.md#lane-wise-integer-absolute-value).
This commit is contained in:
Andrew Brown
2020-06-29 15:37:36 -07:00
parent ec76f3207a
commit 26bdf9c333
2 changed files with 13 additions and 0 deletions

View File

@@ -2069,6 +2069,7 @@ pub(crate) fn lower_insn_to_regs<C: LowerCtx<I = Inst>>(
panic!("x86-specific opcode in supposedly arch-neutral IR!");
}
Opcode::Iabs => unimplemented!(),
Opcode::AvgRound => unimplemented!(),
Opcode::TlsValue => unimplemented!(),
}