summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/regress/bug1678542.js
blob: 8c3f44fa6db62a6fa3a9941ee24943ddfcbde25d (plain)
1
2
3
4
5
6
7
8
9
10
11
var ins = new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary(`
(module
  (global $g (export "g") (mut f64) (f64.const 0))
  (func $p (param f64) (result f64) (local.get 0))
  (func (export "f") (param f64) (result f64)
    (global.set $g (f64.neg (local.get 0)))
    (call $p (local.get 0))))`)));
assertEq(ins.exports.f(3), 3);
assertEq(ins.exports.g.value, -3);