diff options
author | Takashi Kokubun <[email protected]> | 2023-03-07 23:44:26 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2023-03-07 23:59:50 -0800 |
commit | 9ad19069f9d10dcab33bcee8502d587020bad2a4 (patch) | |
tree | 9d8d1286f69ba1bf38f65b822dc931ed8cac48a4 /iseq.c | |
parent | 4bf037bebdc37671ca292dc8f500e1bede077163 (diff) |
Remove obsoleted functions in rjit.c
Diffstat (limited to 'iseq.c')
-rw-r--r-- | iseq.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |