diff options
author | Takashi Kokubun <[email protected]> | 2023-10-19 17:12:08 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2023-10-19 17:12:09 -0700 |
commit | 985370406d2c5150fa3e0f23cdae605ec1a60fdb (patch) | |
tree | 998ca0aa30e04a46ad13c04eb2478313ad8029d6 /vm.c | |
parent | a9d7525fb420e721da38c0959dcc8980cd0cf38e (diff) |
Call rb_jit_cont_init() even earlier
To fix https://github.com/ruby/ruby/actions/runs/6581593578/job/17881779994
Diffstat (limited to 'vm.c')
-rw-r--r-- | vm.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4110,6 +4110,7 @@ Init_BareVM(void) th->vm = vm; th->ractor = vm->ractor.main_ractor = rb_ractor_main_alloc(); Init_native_thread(th); + rb_jit_cont_init(); th_init(th, 0, vm); rb_ractor_set_current_ec(th->ractor, th->ec); |