diff options
| author | Stan Lo <stan.lo@shopify.com> | 2025-09-02 20:20:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-02 19:20:08 +0000 |
| commit | 77a421fb057c16cd82adbe6e07efe0db01bf93a5 (patch) | |
| tree | 900beb9c653dd4adb45987e94adba12ded0f37e8 /yjit/bindgen/src | |
| parent | e0a7da93d25cf9a4fced323ce3344fc390b59ad7 (diff) | |
ZJIT: Clear jit entry from iseqs after TracePoint activation (#14407)
ZJIT: Remove JITed code after TracePoint is enabled
Diffstat (limited to 'yjit/bindgen/src')
| -rw-r--r-- | yjit/bindgen/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit/bindgen/src/main.rs b/yjit/bindgen/src/main.rs index d30fb6c779..2fc85431e0 100644 --- a/yjit/bindgen/src/main.rs +++ b/yjit/bindgen/src/main.rs @@ -333,7 +333,6 @@ fn main() { .allowlist_function("rb_yjit_constcache_shareable") .allowlist_function("rb_iseq_reset_jit_func") .allowlist_function("rb_yjit_dump_iseq_loc") - .allowlist_function("rb_yjit_for_each_iseq") .allowlist_function("rb_yjit_obj_written") .allowlist_function("rb_yjit_str_simple_append") .allowlist_function("rb_RSTRING_PTR") @@ -355,6 +354,7 @@ fn main() { .allowlist_function("rb_jit_multi_ractor_p") .allowlist_function("rb_jit_vm_lock_then_barrier") .allowlist_function("rb_jit_vm_unlock") + .allowlist_function("rb_jit_for_each_iseq") .allowlist_type("robject_offsets") // from vm_sync.h |
