summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug822938.js
blob: 3e28c420566fbc17fd0e4a53d9722a761b37ca9e (plain)
1
2
3
4
5
6
7
8
9
(function f(i) {
  // Add an OSR block which does not define the callee.
  for (; false; ) {};

  // Use the callee.
  if (i)
    f(i - 1);
})(50);