blob: 1cfa53f3f43de069f2f68afa961eebcdb22ee395 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function foo(a, b) {
return a + b;
}
function bar() {
return foo.apply(null, arguments);
}
noInline(bar);
for (var i = 0; i < 1000000; ++i) {
var result = bar(1, 2);
if (result != 3)
throw "Error: bad result: " + result;
}