haikuwebkit/JSTests/microbenchmarks/int-or-other-mul-then-get-b...

19 lines
362 B
JavaScript

//@ 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;