summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/filtertypeset-float32.js
blob: 891c77aa40aa13153b27118116f2d90f52ed21aa (plain)
1
2
3
4
5
6
function f(x) {
    return Math.fround((x ? 0 : x) | Math.max(x, x));
}
for (var j = 0; j < 2; ++j) {
    assertEq(f((function(){}) - 4294967297 ? 1 : 1 | 0 && 4294967297), 1);
}