summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-09 17:11:07 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-09 17:11:07 +0000
commit179bc1b814a6152a8c4d0f20664741caffa156e5 (patch)
treebd4c6b74b8ca68d4b384f4ee9864abd4cb98a0e8 /test
parent29ac19a05b00077dc6344d187c795c3845403cd6 (diff)
_mjit_compile_send.erb: revert r63350
Revert "_mjit_compile_send.erb: inline recursive call" I reverted r63360 in r63379, but the errors were reproductive from r63350. So I need to revert this. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_jit.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index 844f36a98f..891b7f496f 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -322,16 +322,6 @@ class TestJIT < Test::Unit::TestCase
def test_compile_insn_opt_send_without_block
assert_compile_once('print', result_inspect: 'nil', insns: %i[opt_send_without_block])
-
- # recursive inline
- assert_eval_with_jit("#{<<~"begin;"}\n#{<<~"end;"}", stdout: '120', success_count: 1, min_calls: 2)
- begin;
- def fact(i)
- return i if i <= 1
- i * fact(i - 1)
- end
- print fact(5)
- end;
end
def test_compile_insn_invokesuper