diff options
author | Abbas Mashayekh <martianboy2005@gmail.com> | 2021-03-31 01:04:20 +0430 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 13:34:20 -0700 |
commit | daa7e66be52285a0cbee04a7cf69886c63610097 (patch) | |
tree | fbbec2d89c46b809f64e429af932542adbe945f3 /test/reduce | |
parent | 4441588c356ece316a36019715e511b7eed36021 (diff) | |
download | binaryen-daa7e66be52285a0cbee04a7cf69886c63610097.tar.gz binaryen-daa7e66be52285a0cbee04a7cf69886c63610097.tar.bz2 binaryen-daa7e66be52285a0cbee04a7cf69886c63610097.zip |
Remove passive keyword from data segment parser (#3757)
The passive keyword has been removed from spec's text format, and now
any data segment that doesn't have an offset is considered as passive.
This PR remove that from both parser and the Print pass, plus all tests
that used that syntax.
Fixes #2339
Diffstat (limited to 'test/reduce')
-rw-r--r-- | test/reduce/atomics-and-bulk-memory.wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/reduce/atomics-and-bulk-memory.wast b/test/reduce/atomics-and-bulk-memory.wast index a5b31d4be..c43914bd8 100644 --- a/test/reduce/atomics-and-bulk-memory.wast +++ b/test/reduce/atomics-and-bulk-memory.wast @@ -1,7 +1,7 @@ (module (memory 1 1) ;; this can be removed destructively - (data passive "some-data") + (data "some-data") (func "foo" (result i32) ;; this can be removed destructively (memory.init 0 |