blob: 7c5deeb338112e20d3d29c26f91dd1b2ed019e80 [file] [log] [blame]
function test(str, count)
{
return str.repeat(count);
}
noInline(test);
for (var i = 0; i < 1e4; ++i)
test(i.toString(), i);