summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug886243.js
blob: a28030e686d44daf7a1a83f077aad598c1cad976 (plain)
1
2
3
4
5
6
7
8
9
function f(x)
{
  if (Math.imul(0xffffffff, x)) {
    return -x;
  }
  return 1;
}
f(0);
f(0);