summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-06-17 09:16:01 -0700
committerGitHub <noreply@github.com>2020-06-17 09:16:01 -0700
commite544a3a23cb80460d77dcb145ad1ff84f77524c0 (patch)
treec4f344b16ec6f0852dc0592cbb637d563af62064 /test
parente30ff63fd4eb24fd638259cb10638668f0f2ceeb (diff)
downloadruby-e544a3a23cb80460d77dcb145ad1ff84f77524c0.tar.gz
Remove obsoleted opt_call_c_function insn (#3232)
* Remove obsoleted opt_call_c_function insn * Keep opt_call_c_function with DEFINE_INSN_IF
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_jit.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index a5d5fb45a9..97c287f692 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -22,7 +22,6 @@ class TestJIT < Test::Unit::TestCase
TEST_PENDING_INSNS = RubyVM::INSTRUCTION_NAMES.select { |n| n.start_with?('trace_') }.map(&:to_sym) + [
# not supported yet
:defineclass,
- :opt_call_c_function,
# to be tested
:invokebuiltin,
@@ -613,10 +612,6 @@ class TestJIT < Test::Unit::TestCase
assert_compile_once("'true' =~ /true/", result_inspect: '0', insns: %i[opt_regexpmatch2])
end
- def test_compile_insn_opt_call_c_function
- skip "support this in opt_call_c_function (low priority)"
- end
-
def test_compile_insn_opt_invokebuiltin_delegate_leave
insns = collect_insns(RubyVM::InstructionSequence.of("\x00".method(:unpack)).to_a)
mark_tested_insn(:opt_invokebuiltin_delegate_leave, used_insns: insns)