blob: 1b69721aa72de1d653dc478a6593c01dd3a9cfb6 [file] [log] [blame]
var p = {f:true};
function foo(b, d) {
var c;
if (p.f)
c = b;
return d[-c];
}
var result = 0;
var array = [42, 43, 44];
for (var i = 0; i < 1000000; ++i)
result += foo(-(i % 3), array);
if (result != 42999999)
throw "Bad result: " + result;