diff --git a/crates/fuzzing/src/generators/config.rs b/crates/fuzzing/src/generators/config.rs index 5a29e689fc2d..74b0bfb728bd 100644 --- a/crates/fuzzing/src/generators/config.rs +++ b/crates/fuzzing/src/generators/config.rs @@ -171,6 +171,10 @@ impl Config { .allocation_strategy(self.wasmtime.strategy.to_wasmtime()) .generate_address_map(self.wasmtime.generate_address_map); + if !self.module_config.config.simd_enabled { + cfg.wasm_relaxed_simd(false); + } + let compiler_strategy = &self.wasmtime.compiler_strategy; let cranelift_strategy = *compiler_strategy == CompilerStrategy::Cranelift; cfg.strategy(self.wasmtime.compiler_strategy.to_wasmtime());