1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/jaeger/inline/bug645666.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,16 @@ 1.4 +function f1() { 1.5 + gc(); 1.6 +} 1.7 +function f2() { 1.8 + with(this) {}; 1.9 + f1(); 1.10 +} 1.11 +function f3() { 1.12 + f2(); 1.13 +} 1.14 +function f4() { 1.15 + f3(); 1.16 +} 1.17 +f3(); 1.18 +f3(); 1.19 +f4();