We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 897ab1f commit 9c514f5Copy full SHA for 9c514f5
crates/wasm-smith/src/config.rs
@@ -796,6 +796,12 @@ impl Config {
796
self.shared_everything_threads_enabled = false;
797
}
798
799
+ // shared-everything-threads depends on GC, so if gc is disabled then
800
+ // also disable shared-everything-threads.
801
+ if !self.gc_enabled {
802
+ self.shared_everything_threads_enabled = false;
803
+ }
804
+
805
// If simd is disabled then disable all relaxed simd instructions as
806
// well.
807
if !self.simd_enabled {
0 commit comments