js/src/jit-test/tests/baseline/bug847425.js

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:8dc613d7da9e
1 // |jit-test| allow-oom
2 gcparam("maxBytes", gcparam("gcBytes") + 4*1024);
3 var max = 400;
4 function f(b) {
5 if (b) {
6 f(b - 1);
7 } else {
8 g = {
9 apply:function(x,y) { }
10 };
11 }
12 g.apply(null, arguments);
13 }
14 f(max - 1);

mercurial