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