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