blob: 59b2d6bfc377a9e7db7111cd6f0d967376995e6a [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
function foo()
{
return 42;
}
function bar()
{
return foo();
}
noInline(foo);
noInline(bar);
(function() {
for (var i = 0; i < 10000000; ++i) {
var result = bar();
if (result != 42)
throw "Error: bad result: " + result;
}
})();