diff options
author | Alon Zakai <azakai@google.com> | 2024-11-20 09:30:08 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-20 09:30:08 -0800 |
commit | c18159e35aef7a202ceb7c80b2a354101a2830d7 (patch) | |
tree | 94eef4d2f3b48518480c3a7440625942794bfd34 /scripts | |
parent | 53f1c5f5f049498f3006247bca07b81868a7d543 (diff) | |
download | binaryen-c18159e35aef7a202ceb7c80b2a354101a2830d7.tar.gz binaryen-c18159e35aef7a202ceb7c80b2a354101a2830d7.tar.bz2 binaryen-c18159e35aef7a202ceb7c80b2a354101a2830d7.zip |
Fuzzer: Remove --enclose-world from list of fuzz-exec passes (#7093)
It is ok to use this pass to shape the wasm, but not to test for changes
using fuzz-exec, as the pass is destructive: it can alter observable behavior.
Specifically, it adds casts which can trap in the wasm, which can replace a JS
exception which happens outside, and that difference is noticeable.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/fuzz_opt.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index f272ddf83..d6a392129 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -1805,7 +1805,6 @@ opt_choices = [ ("--dce",), ("--directize",), ("--discard-global-effects",), - ("--enclose-world",), ("--flatten", "--dfo",), ("--duplicate-function-elimination",), ("--flatten",), |