blob: 2e467557e748945855949196273782e69c93d049 [file] [log] [blame]
function foo(i, x) {
return String.prototype.big.call(x);
}
noInline(foo);
for (var i = 0; i < 1000; i++) {
try {
if (i < 200)
foo(i, "hello");
else
foo(i, undefined);
} catch(e) {
}
}