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