summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug939868.js
blob: fbf7f03c4645be3f511b9d1f01596d6507a2d13f (plain)
1
2
3
function f(x, y) { return x || Math.fround(y); }
assertEq(f(0, 0), 0);
assertEq(f(0xfffffff, 0), 0xfffffff);