diff options
Diffstat (limited to 'mjit_c.rb')
-rw-r--r-- | mjit_c.rb | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -149,6 +149,10 @@ module RubyVM::MJIT # :nodoc: all Primitive.cexpr! 'SIZET2NUM((size_t)rb_ary_entry_internal)' end + def rb_fix_mod_fix + Primitive.cexpr! 'SIZET2NUM((size_t)rb_fix_mod_fix)' + end + def mjit_for_each_iseq(&block) Primitive.mjit_for_each_iseq(block) end @@ -349,6 +353,10 @@ module RubyVM::MJIT # :nodoc: all Primitive.cexpr! %q{ UINT2NUM(BOP_MINUS) } end + def C.BOP_MOD + Primitive.cexpr! %q{ UINT2NUM(BOP_MOD) } + end + def C.BOP_PLUS Primitive.cexpr! %q{ UINT2NUM(BOP_PLUS) } end |