comparison: js/src/jit-test/tests/jaeger/inline/bug645666.js
js/src/jit-test/tests/jaeger/inline/bug645666.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 function f1() { |
|
2 gc(); |
|
3 } |
|
4 function f2() { |
|
5 with(this) {}; |
|
6 f1(); |
|
7 } |
|
8 function f3() { |
|
9 f2(); |
|
10 } |
|
11 function f4() { |
|
12 f3(); |
|
13 } |
|
14 f3(); |
|
15 f3(); |
|
16 f4(); |