comparison: js/src/jit-test/tests/jaeger/inline/bug645666.js
js/src/jit-test/tests/jaeger/inline/bug645666.js
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
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(); |