From daa7e66be52285a0cbee04a7cf69886c63610097 Mon Sep 17 00:00:00 2001 From: Abbas Mashayekh Date: Wed, 31 Mar 2021 01:04:20 +0430 Subject: 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 --- test/metadce/spanning_cycle.wast | 2 +- test/metadce/spanning_cycle.wast.dced | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test/metadce') diff --git a/test/metadce/spanning_cycle.wast b/test/metadce/spanning_cycle.wast index cfb74346a..e433227dc 100644 --- a/test/metadce/spanning_cycle.wast +++ b/test/metadce/spanning_cycle.wast @@ -1,6 +1,6 @@ (module (memory 1 1) - (data passive "Hello, datacount section!") + (data "Hello, datacount section!") (import "env" "js_func" (func $a_js_func)) diff --git a/test/metadce/spanning_cycle.wast.dced b/test/metadce/spanning_cycle.wast.dced index 7b74682bd..778ce0a51 100644 --- a/test/metadce/spanning_cycle.wast.dced +++ b/test/metadce/spanning_cycle.wast.dced @@ -2,7 +2,7 @@ (type $none_=>_none (func)) (import "env" "js_func" (func $a_js_func)) (memory $0 1 1) - (data passive "Hello, datacount section!") + (data "Hello, datacount section!") (export "wasm_func_a" (func $a_wasm_func)) (func $a_wasm_func (memory.init 0 -- cgit v1.2.3