summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2023-10-19 17:12:08 -0700
committerTakashi Kokubun <[email protected]>2023-10-19 17:12:09 -0700
commit985370406d2c5150fa3e0f23cdae605ec1a60fdb (patch)
tree998ca0aa30e04a46ad13c04eb2478313ad8029d6 /vm.c
parenta9d7525fb420e721da38c0959dcc8980cd0cf38e (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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm.c b/vm.c
index 456af58bfe..cd6d4a5547 100644
--- a/vm.c
+++ b/vm.c
@@ -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);