JIT/AArch64: Add code-generation for IR_TRAP

This commit is contained in:
Dmitry Stogov 2023-11-22 11:43:33 +03:00
parent 1d6cf229ef
commit 18a3192604

View File

@ -5320,6 +5320,9 @@ void *ir_emit_code(ir_ctx *ctx, size_t *size_ptr)
case IR_TLS:
ir_emit_tls(ctx, i, insn);
break;
case IR_TRAP:
| brk;
break;
default:
IR_ASSERT(0 && "NIY rule/instruction");
dasm_free(&data.dasm_state);