summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/bug847425.js
blob: 34197135b681adadb8d2bb6145ff3c621be918ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// |jit-test| allow-oom; allow-unhandlable-oom; skip-if: getBuildConfiguration()['android']
// Disabled on Android due to harness problems (Bug 1532654)

gcparam("maxBytes", gcparam("gcBytes") + 4*1024);
var max = 400;
function f(b) {
    if (b) {
        f(b - 1);
    } else {
        g = {
            apply:function(x,y) {            }
        };
    }
    g.apply(null, arguments);
}
f(max - 1);