diff options
author | Takashi Kokubun <[email protected]> | 2023-03-11 21:10:44 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2023-03-11 21:26:40 -0800 |
commit | 58f7e8b7f83babeefb39d1a919d43de237c36c8a (patch) | |
tree | ba59a593ad5f7fc16aa25261d2d8471d77162c06 /lib/ruby_vm/rjit/exit_compiler.rb | |
parent | 47a6cfca720729d1ae3af534521cbe2a2f93cd50 (diff) |
RJIT: Automate function pointer imports
Diffstat (limited to 'lib/ruby_vm/rjit/exit_compiler.rb')
-rw-r--r-- | lib/ruby_vm/rjit/exit_compiler.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ruby_vm/rjit/exit_compiler.rb b/lib/ruby_vm/rjit/exit_compiler.rb index 35ebf2ddc4..59df9b564c 100644 --- a/lib/ruby_vm/rjit/exit_compiler.rb +++ b/lib/ruby_vm/rjit/exit_compiler.rb @@ -43,7 +43,7 @@ module RubyVM::RJIT asm.comment('full cfunc return') asm.mov(C_ARGS[0], EC) asm.mov(C_ARGS[1], :rax) - asm.call(C.rb_full_cfunc_return) + asm.call(C.rjit_full_cfunc_return) # TODO: count the exit |