summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1005590.js
blob: 4fe1363beee9b892d6e5535e85500ce2fa3a94ad (plain)
1
2
3
4
5
6
7
8
9
function f(x) {
    "use asm"
    return !(1 || x)
}
for (var j = 0; j < 1; j++) {
    (function(x) {
        +f(+x)
    })()
}