summaryrefslogtreecommitdiff
path: root/test/mutable-global.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/mutable-global.wast')
-rw-r--r--test/mutable-global.wast4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mutable-global.wast b/test/mutable-global.wast
index 71d333b17..1cb59de11 100644
--- a/test/mutable-global.wast
+++ b/test/mutable-global.wast
@@ -2,9 +2,9 @@
(type $0 (func))
(import "env" "global-mut" (global $global-mut (mut i32)))
(func $foo (type $0)
- (set_global $global-mut
+ (global.set $global-mut
(i32.add
- (get_global $global-mut)
+ (global.get $global-mut)
(i32.const 1)
)
)