diff options
-rw-r--r-- | cont.c | 2 | ||||
-rw-r--r-- | vm.c | 1 |
2 files changed, 1 insertions, 2 deletions
@@ -3443,8 +3443,6 @@ Init_Cont(void) } } - rb_jit_cont_init(); - rb_cFiber = rb_define_class("Fiber", rb_cObject); rb_define_alloc_func(rb_cFiber, fiber_alloc); rb_eFiberError = rb_define_class("FiberError", rb_eStandardError); @@ -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); |