backend/arm64: Implement Breakpoint
This commit is contained in:
parent
3a11467220
commit
2a24bb2c1e
1 changed files with 2 additions and 5 deletions
|
@ -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<>
|
||||
|
|
Loading…
Reference in a new issue