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/lld/hello_world.passive.wat.out | |
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/lld/hello_world.passive.wat.out')
-rw-r--r-- | test/lld/hello_world.passive.wat.out | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lld/hello_world.passive.wat.out b/test/lld/hello_world.passive.wat.out index ea7c0e183..5d4a2ed10 100644 --- a/test/lld/hello_world.passive.wat.out +++ b/test/lld/hello_world.passive.wat.out @@ -5,7 +5,7 @@ (type $3 (func (param i32 i32) (result i32))) (import "env" "puts" (func $puts (param i32) (result i32))) (memory $0 2) - (data passive "Hello, world\00") + (data "Hello, world\00") (table $0 1 1 funcref) (global $global$0 (mut i32) (i32.const 66128)) (global $global$1 i32 (i32.const 66128)) |