diff options
Diffstat (limited to 'test/mutable-global.wast.fromBinary')
-rw-r--r-- | test/mutable-global.wast.fromBinary | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/mutable-global.wast.fromBinary b/test/mutable-global.wast.fromBinary index 33d332357..04be75288 100644 --- a/test/mutable-global.wast.fromBinary +++ b/test/mutable-global.wast.fromBinary @@ -1,10 +1,10 @@ (module (type $none_=>_none (func)) - (import "env" "global-mut" (global $gimport$0 (mut i32))) + (import "env" "global-mut" (global $global-mut (mut i32))) (func $foo - (global.set $gimport$0 + (global.set $global-mut (i32.add - (global.get $gimport$0) + (global.get $global-mut) (i32.const 1) ) ) |