diff options
Diffstat (limited to 'test/nonspec-bulk-memory.wast.fromBinary')
-rw-r--r-- | test/nonspec-bulk-memory.wast.fromBinary | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/nonspec-bulk-memory.wast.fromBinary b/test/nonspec-bulk-memory.wast.fromBinary index 9120c43e6..48667b74a 100644 --- a/test/nonspec-bulk-memory.wast.fromBinary +++ b/test/nonspec-bulk-memory.wast.fromBinary @@ -2,24 +2,24 @@ (type $none_=>_none (func)) (memory $0 1024 1024) (data (i32.const 0) "hello, world") - (func $memory.init + (func $memory.init (type $none_=>_none) (memory.init 0 (i32.const 512) (i32.const 0) (i32.const 12) ) ) - (func $data.drop + (func $data.drop (type $none_=>_none) (data.drop 0) ) - (func $memory.copy + (func $memory.copy (type $none_=>_none) (memory.copy (i32.const 512) (i32.const 0) (i32.const 12) ) ) - (func $memory.fill + (func $memory.fill (type $none_=>_none) (memory.fill (i32.const 0) (i32.const 42) |