diff options
Diffstat (limited to 'mjit_c.rb')
-rw-r--r-- | mjit_c.rb | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -329,6 +329,10 @@ module RubyVM::MJIT # :nodoc: all Primitive.cexpr! %q{ UINT2NUM(ARRAY_REDEFINED_OP_FLAG) } end + def C.BOP_AND + Primitive.cexpr! %q{ UINT2NUM(BOP_AND) } + end + def C.BOP_AREF Primitive.cexpr! %q{ UINT2NUM(BOP_AREF) } end @@ -357,6 +361,10 @@ module RubyVM::MJIT # :nodoc: all Primitive.cexpr! %q{ UINT2NUM(BOP_MOD) } end + def C.BOP_OR + Primitive.cexpr! %q{ UINT2NUM(BOP_OR) } + end + def C.BOP_PLUS Primitive.cexpr! %q{ UINT2NUM(BOP_PLUS) } end |