tor-browser

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

regalloc-muli64.js (377B)


      1 // Bug 1298808.
      2 assertEq(wasmEvalText(`(module
      3    (func
      4        (result i32)
      5        (i32.wrap_i64
      6            (i64.mul
      7                ;; Conditions: rhs == lhs, rhs is not a constant.
      8                (i64.add (i64.const 1) (i64.const 10))
      9                (i64.add (i64.const 1) (i64.const 10))
     10            )
     11        )
     12    )
     13    (export "" (func 0))
     14 )`).exports[""](), 121);