bug1783507.js (336B)
1 function main(x) { 2 var ta = new Int32Array(10); 3 4 for (var i = 0; i < 100; ++i) { 5 // MCompare::Compare_UIntPtr with result only used on bailout. 6 var r = 0 in ta; 7 8 // Path only entered through bailout condition. 9 if (x) { 10 // |r| must be recovered on bailout here. 11 x(r); 12 } 13 } 14 } 15 16 main(); 17 main(() => {});