summaryrefslogtreecommitdiff
path: root/test/wasm2js
diff options
context:
space:
mode:
authorAbbas Mashayekh <martianboy2005@gmail.com>2021-03-31 01:04:20 +0430
committerGitHub <noreply@github.com>2021-03-30 13:34:20 -0700
commitdaa7e66be52285a0cbee04a7cf69886c63610097 (patch)
treefbbec2d89c46b809f64e429af932542adbe945f3 /test/wasm2js
parent4441588c356ece316a36019715e511b7eed36021 (diff)
downloadbinaryen-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/wasm2js')
-rw-r--r--test/wasm2js/atomics_32.wast4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/wasm2js/atomics_32.wast b/test/wasm2js/atomics_32.wast
index e1b49d852..c6408f162 100644
--- a/test/wasm2js/atomics_32.wast
+++ b/test/wasm2js/atomics_32.wast
@@ -1,7 +1,7 @@
(module
(memory (shared 256 256))
- (data passive "hello,")
- (data passive "world!")
+ (data "hello,")
+ (data "world!")
(func "test"
(local $x i32)
(local $y i64)