summaryrefslogtreecommitdiff
path: root/test/passes/precompute_all-features.wast
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/passes/precompute_all-features.wast
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/passes/precompute_all-features.wast')
-rw-r--r--test/passes/precompute_all-features.wast2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/passes/precompute_all-features.wast b/test/passes/precompute_all-features.wast
index 589a8acf5..1275524e0 100644
--- a/test/passes/precompute_all-features.wast
+++ b/test/passes/precompute_all-features.wast
@@ -1,6 +1,6 @@
(module
(memory 512 512
- (data passive "hello!")
+ (data "hello!")
)
(type $0 (func (param i32)))
(global $global i32 (i32.const 1))