summaryrefslogtreecommitdiff
path: root/test/wasm2js/global_i64.wast
blob: 71a125bf6e2b8e262177d3b1ece79ce39e03a7d3 (plain)
1
2
3
4
5
6
7
8
(module
 (global $f (mut i64) (i64.const 0x12345678ABCDEFAF))
 (func $call (param i64))
 (func $exp (export "exp")
  (call $call (global.get $f))
  (global.set $f (i64.const 0x1122334455667788))
 )
)