diff options
Diffstat (limited to 'test/mutable-global.wasm.fromBinary')
-rw-r--r-- | test/mutable-global.wasm.fromBinary | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/mutable-global.wasm.fromBinary b/test/mutable-global.wasm.fromBinary new file mode 100644 index 000000000..aba18cdc4 --- /dev/null +++ b/test/mutable-global.wasm.fromBinary @@ -0,0 +1,13 @@ +(module + (type $0 (func)) + (import "env" "global-mut" (global $gimport$0 (mut i32))) + (func $0 (; 0 ;) (type $0) + (set_global $gimport$0 + (i32.add + (get_global $gimport$0) + (i32.const 1) + ) + ) + ) +) + |