summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug958432.js
blob: b8ae50a432a4c470869ceca8c8343f991d7b23cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
function h(i, i) {
    i = ([Infinity([])])(1 ? l : arguments)
}
for (var j = 0; j < 2; ++j) {
    try {
        h(-Number, -Number)
    } catch (e) {}
}

function f() {
    function f(i0, i1) {
        i0 = i0 | 0;
        i = i1 | 0;
        switch (1) {
            case -3:
                switch (f) {}
        } {
            return 0
        }(arguments)
    }
    return f
};
for (var j = 0; j < 5; ++j) {
    (function(x) {
        f()(f()(x, f()()))
    })()
}