summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug981325.js
blob: 809b4da7986c688c454cf4c26d0f4169c98fee87 (plain)
1
2
3
4
5
6
7
function f(x) {
    return Math.fround() ? x : x >> 0;
}
function g() {
    return (f() !== Math.fround(0))
}
assertEq(g(), g());