diff options
author | Wouter van Oortmerssen <aardappel@gmail.com> | 2021-02-25 13:18:34 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 13:18:34 -0800 |
commit | 7977ad58a367f49555c70ea5f0f0f6ab06b28903 (patch) | |
tree | 92afec6d6555f653c863a372fbfddcc66fd1d9ba /test/spec/bulk-memory64.wast | |
parent | 04c1515acb354714af3d07fe2a3b65b2bb0398ab (diff) | |
download | binaryen-7977ad58a367f49555c70ea5f0f0f6ab06b28903.tar.gz binaryen-7977ad58a367f49555c70ea5f0f0f6ab06b28903.tar.bz2 binaryen-7977ad58a367f49555c70ea5f0f0f6ab06b28903.zip |
Support 64-bit data segment init-exps in Memory64 (#3593)
This as a consequence of https://reviews.llvm.org/D95651
Diffstat (limited to 'test/spec/bulk-memory64.wast')
-rw-r--r-- | test/spec/bulk-memory64.wast | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/spec/bulk-memory64.wast b/test/spec/bulk-memory64.wast index 5d0090e73..6c0ec7bb6 100644 --- a/test/spec/bulk-memory64.wast +++ b/test/spec/bulk-memory64.wast @@ -46,7 +46,7 @@ ;; memory.copy (module (memory i64 1 1) - (data (i32.const 0) "\aa\bb\cc\dd") + (data (i64.const 0) "\aa\bb\cc\dd") (func (export "copy") (param i64 i64 i64) (memory.copy @@ -153,7 +153,7 @@ (module (memory i64 1) (data passive "") - (data (i32.const 0) "") + (data (i64.const 0) "") (func (export "drop_passive") (data.drop 0)) (func (export "init_passive") |