tor-browser

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

bug1721006.js (348B)


      1 // |jit-test| --no-threads; --baseline-warmup-threshold=10; --ion-warmup-threshold=100
      2 
      3 function foo() {
      4    let x = 1;
      5    let y = 1;
      6    let z = 1;
      7    for (let i = 0; i < 4; i++) {}
      8    for (let i = 0; i < 1000; i++) {
      9        y &= x;
     10        for (let j = 0; j < 100; j++) {}
     11        x = z;
     12        for (let j = 0; j < 8; j++) {}
     13    }
     14 }
     15 foo();