Index: test/mjsunit/compiler/osr-block-scope-func.js |
diff --git a/test/mjsunit/compiler/osr-block-scope-func.js b/test/mjsunit/compiler/osr-block-scope-func.js |
index a2b88c3623c8d325a5fc3fb267e981117f992749..df4076c411982c7fb6fe9bfdfcca264f69c6068e 100644 |
--- a/test/mjsunit/compiler/osr-block-scope-func.js |
+++ b/test/mjsunit/compiler/osr-block-scope-func.js |
@@ -25,23 +25,3 @@ function foo() { |
assertEquals(4950, foo()()); |
assertEquals(4950, foo()()); |
assertEquals(4950, foo()()); |
- |
-function bar() { |
- var result; |
- { |
- let sum = 0; |
- for (let i = 0; i < 90; i++) { |
- sum += i; |
- if (i == 45) %OptimizeOsr(); |
- } |
- result = ret; |
- function ret() { |
- return sum; |
- } |
- } |
- return result; |
-} |
- |
-assertEquals(4005, bar()()); |
-assertEquals(4005, bar()()); |
-assertEquals(4005, bar()()); |