tor-browser

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

imul64-ion-negative-power-of-two.js (237B)


      1 new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary(`
      2 (module
      3    (func (param i64))
      4    (func (export "f")
      5        i64.const 2
      6        i64.const -9223372036854775808
      7        i64.mul
      8        call 0
      9    )
     10 )
     11 `))).exports.f();