summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/regress-bug625701.js
blob: a6f24d9bd4e3b7860f6de2b8609912f0c80b839f (plain)
1
2
3
4
5
6
7
8
9
10
gczeal(2);

for(var i=0; i<20; i++) {
    function f() {
        for (var j = 0; j < 3; j++) {
            (function() {})();
        }
    }
    f();
}