blob: b8e2dba2e41c23c96cc876f5895c025103d90633 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
var p = {f:true};
function foo(a, b, d) {
var c;
if (p.f)
c = b;
return d[a * c];
}
var result = 0;
var array = [42, 43, 44];
for (var i = 0; i < 400000; ++i)
result += foo(i % 2, i % 3, array);
if (result != 16999999)
throw "Bad result: " + result;