diff options
author | Takashi Kokubun <[email protected]> | 2023-04-01 23:06:45 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2023-04-01 23:09:05 -0700 |
commit | 1b475fcd10b4f6fe6784c016e3cdeff724229b1d (patch) | |
tree | c4b836e3fc641dedb64d836155528f68346f956d /rjit_c.rb | |
parent | 6c55c3eb7f20b4df685f263c6fd121883b5bf113 (diff) |
Remove an unneeded function copy
Diffstat (limited to 'rjit_c.rb')
-rw-r--r-- | rjit_c.rb | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -543,6 +543,10 @@ module RubyVM::RJIT # :nodoc: all Primitive.cexpr! %q{ SIZET2NUM((size_t)rb_ary_tmp_new_from_values) } end + def C.rb_ary_unshift_m + Primitive.cexpr! %q{ SIZET2NUM((size_t)rb_ary_unshift_m) } + end + def C.rb_backref_get Primitive.cexpr! %q{ SIZET2NUM((size_t)rb_backref_get) } end @@ -731,10 +735,6 @@ module RubyVM::RJIT # :nodoc: all Primitive.cexpr! %q{ SIZET2NUM((size_t)rb_vm_yield_with_cfunc) } end - def C.rb_yjit_rb_ary_unshift_m - Primitive.cexpr! %q{ SIZET2NUM((size_t)rb_yjit_rb_ary_unshift_m) } - end - def C.rjit_full_cfunc_return Primitive.cexpr! %q{ SIZET2NUM((size_t)rjit_full_cfunc_return) } end |