summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1001222.js
blob: 98c7971bc66bdd763a401774b4ef94a966e7f870 (plain)
1
2
3
4
5
function f(x, y) {
  return +(x ? x : y), y >>> 0
}
f(0, -0)
f(0, 2147483649)