summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/scalar-replacement-oom.js
blob: 32a3a2e5d53228138a32d9b96da953eecb637aa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// |jit-test| skip-if: !('oomAtAllocation' in this)

var lfcode = new Array();
function k(a, f_arg, b, c) {
    for (var i = 0; i < 5; ++i) {
        f_arg(i + a);
    }
}
function t() {
    var x = 2;
    k(50, function(i) {
        x = i;
    }, 100, 200);
    oomAtAllocation(101);
}

try {
    t();
    t();
} catch(e) {
    // ignore the exception
}