summaryrefslogtreecommitdiff
path: root/test/merge/fusing.wast.toMerge
diff options
context:
space:
mode:
Diffstat (limited to 'test/merge/fusing.wast.toMerge')
-rw-r--r--test/merge/fusing.wast.toMerge6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/merge/fusing.wast.toMerge b/test/merge/fusing.wast.toMerge
index 4abd0a5e1..8d17795b1 100644
--- a/test/merge/fusing.wast.toMerge
+++ b/test/merge/fusing.wast.toMerge
@@ -2,7 +2,7 @@
(import "env" "memoryBase" (global $memoryBase i32))
(import "env" "tableBase" (global $tableBase i32))
(import "env" "memory" (memory $0 256))
- (import "env" "table" (table 0 anyfunc))
+ (import "env" "table" (table 0 funcref))
(import "env" "foo" (func $b-foo))
(export "bar" (func $bar-func))
(global $b-global f64 (f64.const 2.14281428))
@@ -13,8 +13,8 @@
)
(func $bar-func
(drop (f64.const 3.14159))
- (drop (get_global $a-global))
- (drop (get_global $b-global))
+ (drop (global.get $a-global))
+ (drop (global.get $b-global))
)
)