Skip supporting has_opt for now

This commit is contained in:
Takashi Kokubun 2022-12-23 17:39:34 -08:00
parent d46cc2c104
commit 25ae82b83e

View file

@ -30,6 +30,9 @@ module RubyVM::MJIT
# @param iseq [RubyVM::MJIT::CPointer::Struct]
def call(iseq)
# TODO: Support has_opt
return if iseq.body.param.flags.has_opt
asm = X86Assembler.new
compile_prologue(asm)
compile_block(asm, iseq)