comparison: js/src/jit-test/tests/ion/bug843866.js
js/src/jit-test/tests/ion/bug843866.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 function g(f) {} |
|
2 function f(b) { |
|
3 g.apply(null, arguments); |
|
4 |
|
5 if (b < 10) |
|
6 f(b+1); |
|
7 } |
|
8 f(0); |