summaryrefslogtreecommitdiff
path: root/rjit_c.c
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-03-17 23:27:16 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2023-03-17 23:27:16 -0700
commit45a17013aae5ed050b0d425a2dab7cd4547ff359 (patch)
tree6620c0aa204f6e1f94f84db48ee351f13ff84649 /rjit_c.c
parent39cd74d2a0c36a76422d3648f076a48fc032d960 (diff)
downloadruby-45a17013aae5ed050b0d425a2dab7cd4547ff359.tar.gz
RJIT: Implement throw insn
Diffstat (limited to 'rjit_c.c')
-rw-r--r--rjit_c.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/rjit_c.c b/rjit_c.c
index 793af25f6a..54dcb8569d 100644
--- a/rjit_c.c
+++ b/rjit_c.c
@@ -494,6 +494,7 @@ extern bool rb_vm_defined(rb_execution_context_t *ec, rb_control_frame_t *reg_cf
extern bool rb_vm_ic_hit_p(IC ic, const VALUE *reg_ep);
extern rb_event_flag_t rb_rjit_global_events;
extern void rb_vm_setinstancevariable(const rb_iseq_t *iseq, VALUE obj, ID id, VALUE val, IVC ic);
+extern VALUE rb_vm_throw(const rb_execution_context_t *ec, rb_control_frame_t *reg_cfp, rb_num_t throw_state, VALUE throwobj);
#include "rjit_c.rbinc"