aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_jit.rb
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-26 01:11:20 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-26 01:11:20 +0000
commite08f418230ac636be3288537306b69af804a748d (patch)
tree829424bb38c14e8e4dfdb8a9e715dded76745765 /test/ruby/test_jit.rb
parentac1783578206076f81aeaa6ef4d71794d1ab9d5d (diff)
downloadruby-e08f418230ac636be3288537306b69af804a748d.tar.gz
revert r64838 and r64839
because some build failures persisted git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64846 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_jit.rb')
-rw-r--r--test/ruby/test_jit.rb9
1 files changed, 1 insertions, 8 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index 722801226e..50f318c2a7 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -19,6 +19,7 @@ class TestJIT < Test::Unit::TestCase
:opt_call_c_function,
# joke
+ :bitblt,
:answer,
# TODO: write tests for them
@@ -477,14 +478,6 @@ class TestJIT < Test::Unit::TestCase
assert_compile_once('[1] << 2', result_inspect: '[1, 2]', insns: %i[opt_ltlt])
end
- def test_compile_insn_opt_and
- assert_compile_once('1 & 3', result_inspect: '1', insns: %i[opt_and])
- end
-
- def test_compile_insn_opt_or
- assert_compile_once('1 | 3', result_inspect: '3', insns: %i[opt_or])
- end
-
def test_compile_insn_opt_aref
skip_on_mswin
# optimized call (optimized JIT) -> send call