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