comparison: js/src/jit-test/tests/ion/bug824347.js
js/src/jit-test/tests/ion/bug824347.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 function g() { } |
|
2 function f(b) { |
|
3 var test; |
|
4 if (b) { |
|
5 g.apply(null, arguments); |
|
6 var test = 1; |
|
7 } else { |
|
8 f(false); |
|
9 } |
|
10 } |
|
11 f(true); |