summaryrefslogtreecommitdiff
path: root/src/tools/fuzzing/fuzzing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/fuzzing/fuzzing.cpp')
-rw-r--r--src/tools/fuzzing/fuzzing.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tools/fuzzing/fuzzing.cpp b/src/tools/fuzzing/fuzzing.cpp
index 135e50393..a283aae91 100644
--- a/src/tools/fuzzing/fuzzing.cpp
+++ b/src/tools/fuzzing/fuzzing.cpp
@@ -270,6 +270,13 @@ void TranslateToFuzzReader::pickPasses(OptimizationOptions& options) {
options.passOptions.closedWorld = true;
}
+ // Prune things that error in JS if we call them (like SIMD), some of the
+ // time. This alters the wasm/JS boundary quite a lot, so testing both forms
+ // is useful.
+ if (oneIn(2)) {
+ options.passes.push_back("legalize-and-prune-js-interface");
+ }
+
// Usually DCE at the very end, to ensure that our binaries validate in other
// VMs, due to how non-nullable local validation and unreachable code
// interact. See fuzz_opt.py and