diff options
Diffstat (limited to 'test/bulk-memory.wast.fromBinary')
-rw-r--r-- | test/bulk-memory.wast.fromBinary | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/bulk-memory.wast.fromBinary b/test/bulk-memory.wast.fromBinary index 0659c0184..f1c3bc0ef 100644 --- a/test/bulk-memory.wast.fromBinary +++ b/test/bulk-memory.wast.fromBinary @@ -1,25 +1,25 @@ (module - (type $0 (func)) + (type $none_=>_none (func)) (memory $0 1024 1024) (data (i32.const 0) "hello, world") - (func $memory.init (; 0 ;) (type $0) + (func $memory.init (; 0 ;) (memory.init 0 (i32.const 512) (i32.const 0) (i32.const 12) ) ) - (func $data.drop (; 1 ;) (type $0) + (func $data.drop (; 1 ;) (data.drop 0) ) - (func $memory.copy (; 2 ;) (type $0) + (func $memory.copy (; 2 ;) (memory.copy (i32.const 512) (i32.const 0) (i32.const 12) ) ) - (func $memory.fill (; 3 ;) (type $0) + (func $memory.fill (; 3 ;) (memory.fill (i32.const 0) (i32.const 42) |