diff options
author | Abbas Mashayekh <martianboy2005@gmail.com> | 2021-04-01 00:30:13 +0430 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-31 13:00:13 -0700 |
commit | d9f0d8f09985320e0849f76d4ce8a8ee409f5e6d (patch) | |
tree | 3c2bc188e95cc066328fb41c359ba45b2ed2d6f6 /test/passes/asyncify.wast | |
parent | fdd6926c83a5901ba7d7ae12d02f1bd033c92657 (diff) | |
download | binaryen-d9f0d8f09985320e0849f76d4ce8a8ee409f5e6d.tar.gz binaryen-d9f0d8f09985320e0849f76d4ce8a8ee409f5e6d.tar.bz2 binaryen-d9f0d8f09985320e0849f76d4ce8a8ee409f5e6d.zip |
Remove old syntax from table and elem in parser (#3753)
We've been keeping old syntax in the text format parser although they've
been removed from the parser and hardly any test case relies on them.
This PR will remove old syntax support for tables and element segments
and simplify the corresponding parser functions. A few test files were
affected by this that are updated.
Diffstat (limited to 'test/passes/asyncify.wast')
-rw-r--r-- | test/passes/asyncify.wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/passes/asyncify.wast b/test/passes/asyncify.wast index 281934aea..e919a7e86 100644 --- a/test/passes/asyncify.wast +++ b/test/passes/asyncify.wast @@ -3,7 +3,7 @@ (memory 1 2) (import "env" "import" (func $import)) (import "env" "import2" (func $import2 (param i32))) - (table 1 1) + (table funcref (elem $liveness2 $liveness2)) (func $liveness1 (param $live0 i32) (param $dead0 i32) (local $live1 i32) (local $dead1 i32) |