diff options
author | Takashi Kokubun <[email protected]> | 2023-03-06 23:15:30 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2023-03-06 23:44:01 -0800 |
commit | 2e875549a934fa04b7939810fa0d8a2762702aaa (patch) | |
tree | 116b99056f810d48359ac6fa6a3b06e9ddc65c05 /lib/ruby_vm/rjit/assembler.rb | |
parent | eaccdc1941304d6273397b21c25213174d892185 (diff) |
s/MJIT/RJIT/
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7462
Diffstat (limited to 'lib/ruby_vm/rjit/assembler.rb')
-rw-r--r-- | lib/ruby_vm/rjit/assembler.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ruby_vm/rjit/assembler.rb b/lib/ruby_vm/rjit/assembler.rb index cccd228c00..232c104af7 100644 --- a/lib/ruby_vm/rjit/assembler.rb +++ b/lib/ruby_vm/rjit/assembler.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -module RubyVM::MJIT +module RubyVM::RJIT # 8-bit memory access class BytePtr < Data.define(:reg, :disp); end @@ -905,7 +905,7 @@ module RubyVM::MJIT Label.new(id: @label_id += 1, name:) end - # @param [RubyVM::MJIT::Assembler::Label] label + # @param [RubyVM::RJIT::Assembler::Label] label def write_label(label) @labels[label] = @bytes.size end |