blob: 04c714ee0016bb375fa5f8e658d6d6f208099c35 [file] [log] [blame]
"use strict";
function foo(x) {
var tmp = x + 1;
return tmp + arguments[0];
}
noInline(foo);
for (var i = 0; i < 10000; ++i) {
var result = foo(i);
if (result != i + i + 1)
throw "Error: bad result: " + result;
}
var result = foo(4.5);
if (result != 4.5 + 4.5 + 1)
throw "Error: bad result at end: " + result;