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

Unified Diff: test/mjsunit/regress/regress-2618.js

Issue 18357004: Revert r15419: "Generate StoreGlobal stubs with Hydrogen" (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 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 | « src/x64/lithium-gap-resolver-x64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-2618.js
diff --git a/test/mjsunit/regress/regress-2618.js b/test/mjsunit/regress/regress-2618.js
index 99f05ca6170290eed9aaa69a84ba4ccef4b486a3..638b71e6228b9f5c5fcfffeafcb0d72e606faf9b 100644
--- a/test/mjsunit/regress/regress-2618.js
+++ b/test/mjsunit/regress/regress-2618.js
@@ -30,7 +30,7 @@
function f() {
do {
do {
- for (var i = 0; i < 10000000; i++) {
+ for (i = 0; i < 10000000; i++) {
// This should run long enough to trigger OSR.
}
} while (false);
@@ -46,7 +46,7 @@ function g() {
do {
do {
- for (var i = 0; i < 1; i++) { }
+ for (i = 0; i < 1; i++) { }
} while (false);
} while (false);
@@ -58,7 +58,7 @@ function g() {
do {
do {
do {
- for (var i = 0; i < 10000000; i++) { }
+ for (i = 0; i < 10000000; i++) { }
} while (false);
} while (false);
} while (false);
« no previous file with comments | « src/x64/lithium-gap-resolver-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698