tor-browser

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

regalloc-double.js (168B)


      1 // register allocation involving doubles.
      2 
      3 function foo(a,b) {
      4  var c;
      5  if (a < b) {
      6    c = a + 1;
      7  } else {
      8    c = 0.5;
      9  }
     10  return c;
     11 }
     12 assertEq(foo(0, 1), 1);