diff options
author | Thomas Lively <tlively@google.com> | 2024-06-25 12:39:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-25 12:39:05 -0700 |
commit | 654ee6e2504f11fb0e982a2cf276bafa750f694b (patch) | |
tree | e955f95d009f2df626e3d2ff07154ec56d5d6265 /scripts/fuzz_opt.py | |
parent | 4cd8b61c5d4817f753a54ef9f501db66969e310f (diff) | |
download | binaryen-654ee6e2504f11fb0e982a2cf276bafa750f694b.tar.gz binaryen-654ee6e2504f11fb0e982a2cf276bafa750f694b.tar.bz2 binaryen-654ee6e2504f11fb0e982a2cf276bafa750f694b.zip |
[threads] Validate shared-polymorphic instructions (#6702)
Such as `ref.eq`, `i31.get_{s,u}`, and `array.len`. Also validate that
struct and array operations work on shared structs and arrays.
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 0804c0387..192c0d362 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -353,6 +353,7 @@ INITIAL_CONTENTS_IGNORE = [ # Shared types implementation in progress 'type-merging-shared.wast', 'shared-types.wast', + 'shared-polymorphism.wast', 'shared-struct.wast', ] |