tor-browser

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

gvn-unremovable-phi-bug1317675.js (315B)


      1 // |jit-test| error: InternalError: too much recursion
      2 
      3 function f() {
      4    var phi1 = 0;
      5    var phi2 = 0;
      6    while (true) {
      7        if (!phi2) {
      8            var add = phi1 + 1;
      9            f(add);
     10            if (!phi2)
     11                return;
     12            phi1 = 1;
     13            phi2 = 0;
     14        }
     15    }
     16 }
     17 
     18 f(0);