Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1595)

Unified Diff: test/mjsunit/compiler/osr-block-scope-func.js

Issue 934293002: [turbofan] Simply context specialization and fix for OSR. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/compiler/osr-block-scope.js ('k') | test/mjsunit/compiler/osr-for-let.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()());
« no previous file with comments | « test/mjsunit/compiler/osr-block-scope.js ('k') | test/mjsunit/compiler/osr-for-let.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698