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