summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/asm.js/testBug878435.js
blob: 965b28002551933387a0e10080d4d7156e2a1fe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
function g()
{
  "use asm";
  function f()
  {
    return (0 > (0x80000000 | 0)) | 0;
  }
  return f;
}

assertEq(g()(), (0 > (0x80000000 | 0)) | 0);