summaryrefslogtreecommitdiff
path: root/test/nonspec-bulk-memory.wast.fromBinary
diff options
context:
space:
mode:
Diffstat (limited to 'test/nonspec-bulk-memory.wast.fromBinary')
-rw-r--r--test/nonspec-bulk-memory.wast.fromBinary10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/nonspec-bulk-memory.wast.fromBinary b/test/nonspec-bulk-memory.wast.fromBinary
index d43f0c6e0..f2c4c0c5e 100644
--- a/test/nonspec-bulk-memory.wast.fromBinary
+++ b/test/nonspec-bulk-memory.wast.fromBinary
@@ -1,25 +1,25 @@
(module
- (type $none_=>_none (func))
+ (type $0 (func))
(memory $0 1024 1024)
(data $0 (i32.const 0) "hello, world")
- (func $memory.init (type $none_=>_none)
+ (func $memory.init (type $0)
(memory.init $0
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
- (func $data.drop (type $none_=>_none)
+ (func $data.drop (type $0)
(data.drop $0)
)
- (func $memory.copy (type $none_=>_none)
+ (func $memory.copy (type $0)
(memory.copy
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
- (func $memory.fill (type $none_=>_none)
+ (func $memory.fill (type $0)
(memory.fill
(i32.const 0)
(i32.const 42)