Call rb_jit_cont_init() even earlier

To fix https://github.com/ruby/ruby/actions/runs/6581593578/job/17881779994
This commit is contained in:
Takashi Kokubun 2023-10-19 17:12:08 -07:00
Родитель a9d7525fb4
Коммит 985370406d
2 изменённых файлов: 1 добавлений и 2 удалений

2
cont.c
Просмотреть файл

@ -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);

1
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);