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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a2b88c3623c8d325a5fc3fb267e981117f992749 |
--- /dev/null |
+++ b/test/mjsunit/compiler/osr-block-scope-func.js |
@@ -0,0 +1,47 @@ |
+// Copyright 2015 the V8 project authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// Flags: --allow-natives-syntax --use-osr --turbo-osr |
+ |
+"use strict"; |
+ |
+function foo() { |
+ var result; |
+ { |
+ let sum = 0; |
+ for (var i = 0; i < 100; i++) { |
+ if (i == 50) %OptimizeOsr(); |
+ sum += i; |
+ } |
+ result = ret; |
+ function ret() { |
+ return sum; |
+ } |
+ } |
+ return result; |
+} |
+ |
+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()()); |