diff options
author | Takashi Kokubun <[email protected]> | 2020-06-17 09:16:01 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-17 09:16:01 -0700 |
commit | e544a3a23cb80460d77dcb145ad1ff84f77524c0 (patch) | |
tree | c4f344b16ec6f0852dc0592cbb637d563af62064 /tool/ruby_vm | |
parent | e30ff63fd4eb24fd638259cb10638668f0f2ceeb (diff) |
Remove obsoleted opt_call_c_function insn (#3232)
* Remove obsoleted opt_call_c_function insn
* Keep opt_call_c_function with DEFINE_INSN_IF
Notes
Notes:
Merged-By: k0kubun <[email protected]>
Diffstat (limited to 'tool/ruby_vm')
-rw-r--r-- | tool/ruby_vm/views/mjit_compile.inc.erb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tool/ruby_vm/views/mjit_compile.inc.erb b/tool/ruby_vm/views/mjit_compile.inc.erb index c9755454ba..0d3678dfb5 100644 --- a/tool/ruby_vm/views/mjit_compile.inc.erb +++ b/tool/ruby_vm/views/mjit_compile.inc.erb @@ -16,8 +16,7 @@ } -%> % % unsupported_insns = [ -% 'defineclass', # low priority -% 'opt_call_c_function', # low priority +% 'defineclass', # low priority % ] % % opt_send_without_block = RubyVM::Instructions.find { |i| i.name == 'opt_send_without_block' } |