summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-11-20 09:30:08 -0800
committerGitHub <noreply@github.com>2024-11-20 09:30:08 -0800
commitc18159e35aef7a202ceb7c80b2a354101a2830d7 (patch)
tree94eef4d2f3b48518480c3a7440625942794bfd34 /scripts
parent53f1c5f5f049498f3006247bca07b81868a7d543 (diff)
downloadbinaryen-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-xscripts/fuzz_opt.py1
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",),