summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug995826.js
blob: 062869e8bf4c97f03ad8eef18a1a039422a411ce (plain)
1
2
3
4
5
function f(x) {
        return Math.round(-Math.tan(x > 0))
}
f(2)
assertEq(f(-1), -0);