summaryrefslogtreecommitdiff
path: root/iseq.c
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-03-07 23:44:26 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2023-03-07 23:59:50 -0800
commit9ad19069f9d10dcab33bcee8502d587020bad2a4 (patch)
tree9d8d1286f69ba1bf38f65b822dc931ed8cac48a4 /iseq.c
parent4bf037bebdc37671ca292dc8f500e1bede077163 (diff)
downloadruby-9ad19069f9d10dcab33bcee8502d587020bad2a4.tar.gz
Remove obsoleted functions in rjit.c
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index f6bc4202ec..2e072f9ac2 100644
--- a/iseq.c
+++ b/iseq.c
@@ -164,7 +164,7 @@ rb_iseq_free(const rb_iseq_t *iseq)
if (iseq && ISEQ_BODY(iseq)) {
iseq_clear_ic_references(iseq);
struct rb_iseq_constant_body *const body = ISEQ_BODY(iseq);
- rjit_free_iseq(iseq); /* Notify RJIT */
+ rb_rjit_free_iseq(iseq); /* Notify RJIT */
#if USE_YJIT
rb_yjit_iseq_free(body->yjit_payload);
#endif