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

Thu, 15 Jan 2015 21:13:52 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:13:52 +0100
branch
TOR_BUG_9701
changeset 12
7540298fafa1
permissions
-rw-r--r--

Remove forgotten relic of ABI crash risk averse overloaded method change.

     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