blob: 82d0397d0a9156b16fd57b673a6e9a65589add28 [file] [log] [blame]
description(
"Tests that the (-2147483648/-1)|0 case in the DFG is handled correctly even when there is some interesting register allocation going on."
);
function foo(c, d, a, b) {
return (c + d) + ((a % b) | 0);
}
for (var i = 0; i < 100; ++i)
shouldBe("foo(0, 0, -2147483647-1, -1)", "0");