comparison: js/src/jit-test/tests/ion/bug822938.js
js/src/jit-test/tests/ion/bug822938.js
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
1 |
|
2 (function f(i) { |
|
3 // Add an OSR block which does not define the callee. |
|
4 for (; false; ) {}; |
|
5 |
|
6 // Use the callee. |
|
7 if (i) |
|
8 f(i - 1); |
|
9 })(50); |