blob: ea02f4df3539b6e0b0b97aef2b0104d0e4339928 [file] [log] [blame]
function f(x) {
if (x == 0)
return;
arguments[0]--;
f.apply(null, arguments);
}
// When the apply-optimization isn't on, each recursive call chews up the C
// stack, so don't push it.
a = [20];
for (var i = 0; i < 2000; ++i)
a.push(i);
f.apply(null, a);