Commit 79cad15c authored by titzer's avatar titzer Committed by Commit bot

Speed up tests for OSR of for-in and for-of loops.

R=marja@chromium.org
BUG=

Review URL: https://codereview.chromium.org/889293003

Cr-Commit-Position: refs/heads/master@{#26378}
parent 81091e62
......@@ -16,7 +16,7 @@ function f(a) {
return sum;
}
var a = new Array();
var a = new Array(10000);
for (var i = 0; i < 10000; i++) {
a[i] = (i * 999) % 77;
}
......
......@@ -15,7 +15,7 @@ function f(a) {
return sum;
}
var a = new Array();
var a = new Array(10000);
for (var i = 0; i < 10000; i++) {
a[i] = (i * 999) % 77;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment