blob: fb6f6df64a46dfb7d85d6a404f079533da048606 [file] [log] [blame] [edit]
function foo() {
arguments = {f:42};
return arguments.f;
}
noInline(foo);
for (var i = 0; i < testLoopCount; ++i) {
var result = foo();
if (result != 42)
throw "Error: bad result: " + result;
}