summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/bug843444.js
blob: 3a77402ac76b332a9b5e20a8c5b8ea91e4dcbf37 (plain)
1
2
3
4
5
6
7
8
gczeal(8, 1)
function recurse(x) {
    recurse;
    if (x < 20)
	recurse(x + 1);
};
this.watch(5, (function () {}))
recurse(0)