tor-browser

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

float32-round-int32-min.js (187B)


      1 // |jit-test| test-also=--no-sse4
      2 
      3 let ta = new Float32Array([
      4  -2147483648.0,
      5  -2147483648.0,
      6 ]);
      7 
      8 for (let i = 0; i < 1000; i++) {
      9  assertEq(Math.round(ta[i & 1]), -2147483648.0);
     10 }