diff options
Diffstat (limited to 'test/mutable-global.wasm.fromBinary')
-rw-r--r-- | test/mutable-global.wasm.fromBinary | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mutable-global.wasm.fromBinary b/test/mutable-global.wasm.fromBinary index aba18cdc4..7ce80b82d 100644 --- a/test/mutable-global.wasm.fromBinary +++ b/test/mutable-global.wasm.fromBinary @@ -2,9 +2,9 @@ (type $0 (func)) (import "env" "global-mut" (global $gimport$0 (mut i32))) (func $0 (; 0 ;) (type $0) - (set_global $gimport$0 + (global.set $gimport$0 (i32.add - (get_global $gimport$0) + (global.get $gimport$0) (i32.const 1) ) ) |