backend/arm64: Implement Breakpoint

This commit is contained in:
Merry 2022-07-22 19:54:57 +01:00 committed by merry
parent 3a11467220
commit 2a24bb2c1e

View file

@ -37,11 +37,8 @@ void EmitIR<IR::Opcode::Identity>(oaknut::CodeGenerator& code, EmitContext& ctx,
}
template<>
void EmitIR<IR::Opcode::Breakpoint>(oaknut::CodeGenerator& code, EmitContext& ctx, IR::Inst* inst) {
(void)code;
(void)ctx;
(void)inst;
ASSERT_FALSE("Unimplemented");
void EmitIR<IR::Opcode::Breakpoint>(oaknut::CodeGenerator& code, EmitContext&, IR::Inst*) {
code.BRK(0);
}
template<>