js/src/jit-test/tests/asm.js/testBug878435.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:e1255c168d36
1 function g()
2 {
3 "use asm";
4 function f()
5 {
6 return (0 > (0x80000000 | 0)) | 0;
7 }
8 return f;
9 }
10
11 assertEq(g()(), (0 > (0x80000000 | 0)) | 0);

mercurial