File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -5797,6 +5797,7 @@ gc.$(OBJEXT): {$(VPATH)}vm_debug.h
57975797gc.$(OBJEXT): {$(VPATH)}vm_opts.h
57985798gc.$(OBJEXT): {$(VPATH)}vm_sync.h
57995799gc.$(OBJEXT): {$(VPATH)}yjit.h
5800+ gc.$(OBJEXT): {$(VPATH)}zjit.h
58005801goruby.$(OBJEXT): $(CCAN_DIR)/check_type/check_type.h
58015802goruby.$(OBJEXT): $(CCAN_DIR)/container_of/container_of.h
58025803goruby.$(OBJEXT): $(CCAN_DIR)/list/list.h
Original file line number Diff line number Diff line change 127127#include "vm_callinfo.h"
128128#include "ractor_core.h"
129129#include "yjit.h"
130+ #include "zjit.h"
130131
131132#include "builtin.h"
132133#include "shape.h"
@@ -4106,6 +4107,14 @@ rb_gc_update_vm_references(void *objspace)
41064107 rb_yjit_root_update_references ();
41074108 }
41084109#endif
4110+
4111+ #if USE_ZJIT
4112+ void rb_zjit_root_update_references (void ); // in Rust
4113+
4114+ if (rb_zjit_enabled_p ) {
4115+ rb_zjit_root_update_references ();
4116+ }
4117+ #endif
41094118}
41104119
41114120void
You can’t perform that action at this time.
0 commit comments