summaryrefslogtreecommitdiff
path: root/lib/ruby_vm
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2023-02-10 23:36:48 -0800
committerTakashi Kokubun <[email protected]>2023-03-05 23:28:59 -0800
commit11bd040b8900ea2e55c1188ceb59dd5694be8336 (patch)
tree67f9f2cb6e414aeb2ab5ebd5c73213f6ab3f167a /lib/ruby_vm
parent39b787448126d9c6363bb5d8ce5e82ffef6a1c22 (diff)
Fix a typo in jit_chain_guard
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/7448
Diffstat (limited to 'lib/ruby_vm')
-rw-r--r--lib/ruby_vm/mjit/insn_compiler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ruby_vm/mjit/insn_compiler.rb b/lib/ruby_vm/mjit/insn_compiler.rb
index 2ae537d9f6..a9b808dec2 100644
--- a/lib/ruby_vm/mjit/insn_compiler.rb
+++ b/lib/ruby_vm/mjit/insn_compiler.rb
@@ -794,7 +794,7 @@ module RubyVM::MJIT
branch_asm.stub(branch_stub) do
case branch_stub.shape
in Default
- asm.public_send(opcode, branch_stub.target0.address)
+ branch_asm.public_send(opcode, branch_stub.target0.address)
end
end
end