diff options
author | Thomas Lively <tlively@google.com> | 2024-07-18 16:39:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-18 13:39:15 -0700 |
commit | a744bec7bc744182822c6b86aa3159d08dea0b3c (patch) | |
tree | 508e624342d4c52bbbeb7e377509c66408c9b303 /scripts/fuzz_opt.py | |
parent | fd867a3865d079b7f9c8ec1c7fc6d02a4de28b4c (diff) | |
download | binaryen-a744bec7bc744182822c6b86aa3159d08dea0b3c.tar.gz binaryen-a744bec7bc744182822c6b86aa3159d08dea0b3c.tar.bz2 binaryen-a744bec7bc744182822c6b86aa3159d08dea0b3c.zip |
Validate features for types used in tables (#6768)
We previously special-cased things like GC types, but switch to a more
general solution of detecting what features a table's type requires.
Diffstat (limited to 'scripts/fuzz_opt.py')
-rwxr-xr-x | scripts/fuzz_opt.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index 0f3bc3f3f..9036c338f 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -363,6 +363,7 @@ INITIAL_CONTENTS_IGNORE = [ 'shared-ref_eq.wast', 'shared-types-no-gc.wast', 'shared-ref-i31.wast', + 'table-type.wast', ] |