diff options
author | Brendan Dahl <brendan.dahl@gmail.com> | 2024-08-07 14:59:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-07 21:59:17 +0000 |
commit | fb6ead80296471276f4cee05f920e6fe8aba67c5 (patch) | |
tree | e5a895137a26bf46f23bb40d844b9dfb469c23cb | |
parent | dc87572a2d24f7dd42bec3af3005f09bc2c26af3 (diff) | |
download | binaryen-fb6ead80296471276f4cee05f920e6fe8aba67c5.tar.gz binaryen-fb6ead80296471276f4cee05f920e6fe8aba67c5.tar.bz2 binaryen-fb6ead80296471276f4cee05f920e6fe8aba67c5.zip |
[FP16] Disable float 16 fuzzing for now. (#6822)
-rwxr-xr-x | scripts/fuzz_opt.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index 77fc664c9..a4adb7b79 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -294,6 +294,8 @@ def init_important_initial_contents(): INITIAL_CONTENTS_IGNORE = [ + # Float16 is still experimental. + 'f16.wast', # not all relaxed SIMD instructions are implemented in the interpreter 'relaxed-simd.wast', # TODO: fuzzer and interpreter support for strings |