diff options
author | Takashi Kokubun <[email protected]> | 2023-03-06 23:17:25 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2023-03-06 23:44:01 -0800 |
commit | 23ec248e48f696ae986e2b19cd572ece02a5ba55 (patch) | |
tree | 3973e15ea1c34d000b40a64bd64e78880f28efec /lib/ruby_vm/rjit/hooks.rb | |
parent | 2e875549a934fa04b7939810fa0d8a2762702aaa (diff) |
s/mjit/rjit/
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7462
Diffstat (limited to 'lib/ruby_vm/rjit/hooks.rb')
-rw-r--r-- | lib/ruby_vm/rjit/hooks.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ruby_vm/rjit/hooks.rb b/lib/ruby_vm/rjit/hooks.rb index d7e4e5f5bc..ea9d7bf5a8 100644 --- a/lib/ruby_vm/rjit/hooks.rb +++ b/lib/ruby_vm/rjit/hooks.rb @@ -1,7 +1,7 @@ module RubyVM::RJIT module Hooks # :nodoc: all def self.on_bop_redefined(_redefined_flag, _bop) - # C.mjit_cancel_all("BOP is redefined") + # C.rjit_cancel_all("BOP is redefined") end def self.on_cme_invalidate(cme) @@ -10,7 +10,7 @@ module RubyVM::RJIT end def self.on_ractor_spawn - # C.mjit_cancel_all("Ractor is spawned") + # C.rjit_cancel_all("Ractor is spawned") end # Global constant changes like const_set |