blob: bd7b8b2057c3cc502bfbbaea0fd2a3b6bd79a4b3 [file] [log] [blame] [edit]
function test(a, b, c)
{
$vm.assertFrameAligned();
return a + b + c;
}
{
var bound = test.bind(undefined, 0, 1, 2);
function test1() {
return bound();
}
noInline(test1);
for (let i = 0; i < 1e4; ++i)
test1();
}