Add unimplemented! arm for ConstAddr in Aarch64 (#1548)

This commit is contained in:
Andrew Brown
2020-04-17 13:03:28 -07:00
committed by GitHub
parent a148de08f8
commit 3159f0a76e

View File

@@ -1515,6 +1515,8 @@ fn lower_insn_to_regs<C: LowerCtx<I = Inst>>(ctx: &mut C, insn: IRInst) {
panic!("table_addr should have been removed by legalization!"); panic!("table_addr should have been removed by legalization!");
} }
Opcode::ConstAddr => unimplemented!(),
Opcode::Nop => { Opcode::Nop => {
// Nothing. // Nothing.
} }