blob: b4ba01276f79eceabd2830df1fe4ed2e995cd1fc [file] [log] [blame]
description(
"Tests that the (x/0)|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, " + i + ", 0)", "0");