tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bug719346.js (194B)


      1 // Try to GC some ion code that involves an IC on x64.
      2 
      3 var o = {
      4 bar: function () { return 1; }
      5 }
      6 
      7 function f(o) {
      8 for (var i = 0; i < 100; i++)
      9  o.bar();
     10 }
     11 
     12 f(o);
     13 
     14 // Don't segfault.
     15 gc();