summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug942604.js
blob: 068b5e2ab6c4d4e9ec37ad65321cf2b5a950c1f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
for (var j = 0; j < 999; ++j) {
    try {
        (function() {
            function f(x) {
                x = (new Float32Array)[i >> 2];
                {}(w) = arguments[0]
            }
            return f
        })()();
    } catch (e) {}
}