blob: 99fa419c17282cecd93313e2bd8b8445d41889a4 (
plain)
1
2
3
4
5
6
7
8
9
|
(module
(global $f (mut i64) (i64.const 0x12345678ABCDEFAF))
(global $g (mut i64) (global.get $f))
(func $call (param i64))
(func "exp"
(call $call (global.get $f))
(global.set $f (i64.const 0x1122334455667788))
)
)
|