summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1063653.js
blob: 9a0e162ef14f8bfe6c01549554bfad91ad8fed99 (plain)
1
2
3
4
5
6
7
8
9
10
function g(x) {
    return (0 > (Math.max(x, x) || x))
}
function f() {
    return g(g() >> 0)
}
for (var k = 0; k < 1; ++k) {
    f();
}