summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1518377-2.js
blob: 91902b20bf1e9d03b78461e5f108cf865ab1486b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
g = (function(t, foreign) {
        "use asm";
        var ff = foreign.ff;
        function f() { ff() }
        return f
})(this, {
        ff: -0 || (this) ? inIon : a &= () => test()
})

function m(f) {
        for (var i = 0; i < 100; ++i) {
            f();
        }
}

m(g);