summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/recover-bug1236114.js
blob: 0956a3ee8ad96057f014f9657eee3a81401cdac1 (plain)
1
2
3
4
5
function f(x) {
    return (!(Math.round(Math.hypot(Number.MIN_VALUE, Math.fround(x))) | 0) | 0) !== (Math.atanh(x) ? false : Math.tan(0))
}
f(Number.MIN_VALUE)
assertEq(f(4294967295), true)