blob: cd2ab4015921b193ec9a9f1e5f3bbd2ce163334b [file] [edit]
function foo() {
"use strict";
return arguments[0] + 1.5;
}
noInline(foo);
for (var i = 0; i < testLoopCount; ++i) {
var result = foo(4.2);
if (result != 5.7)
throw "Error: bad result: " + result;
}