diff options
author | Takashi Kokubun <takashikkbn@gmail.com> | 2023-03-06 23:17:25 -0800 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2023-03-06 23:44:01 -0800 |
commit | 23ec248e48f696ae986e2b19cd572ece02a5ba55 (patch) | |
tree | 3973e15ea1c34d000b40a64bd64e78880f28efec /vm_trace.c | |
parent | 2e875549a934fa04b7939810fa0d8a2762702aaa (diff) | |
download | ruby-23ec248e48f696ae986e2b19cd572ece02a5ba55.tar.gz |
s/mjit/rjit/
Diffstat (limited to 'vm_trace.c')
-rw-r--r-- | vm_trace.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vm_trace.c b/vm_trace.c index 2f35d71edc..0cdefe3793 100644 --- a/vm_trace.c +++ b/vm_trace.c @@ -27,7 +27,7 @@ #include "internal/hash.h" #include "internal/symbol.h" #include "iseq.h" -#include "mjit.h" +#include "rjit.h" #include "ruby/debug.h" #include "vm_core.h" #include "ruby/ractor.h" @@ -126,7 +126,7 @@ update_global_event_hook(rb_event_flag_t prev_events, rb_event_flag_t new_events // Do this after event flags updates so other ractors see updated vm events // when they wake up. rb_yjit_tracing_invalidate_all(); - rb_mjit_tracing_invalidate_all(new_iseq_events); + rb_rjit_tracing_invalidate_all(new_iseq_events); } } @@ -1264,7 +1264,7 @@ rb_tracepoint_enable_for_target(VALUE tpval, VALUE target, VALUE target_line) } rb_yjit_tracing_invalidate_all(); - rb_mjit_tracing_invalidate_all(tp->events); + rb_rjit_tracing_invalidate_all(tp->events); ruby_vm_event_local_num++; |