mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 14:05:02 +02:00
Skip supporting has_opt for now
This commit is contained in:
parent
d46cc2c104
commit
25ae82b83e
1 changed files with 3 additions and 0 deletions
|
@ -30,6 +30,9 @@ module RubyVM::MJIT
|
||||||
|
|
||||||
# @param iseq [RubyVM::MJIT::CPointer::Struct]
|
# @param iseq [RubyVM::MJIT::CPointer::Struct]
|
||||||
def call(iseq)
|
def call(iseq)
|
||||||
|
# TODO: Support has_opt
|
||||||
|
return if iseq.body.param.flags.has_opt
|
||||||
|
|
||||||
asm = X86Assembler.new
|
asm = X86Assembler.new
|
||||||
compile_prologue(asm)
|
compile_prologue(asm)
|
||||||
compile_block(asm, iseq)
|
compile_block(asm, iseq)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue