Ensure simd is enabled for spectest fuzzing (#4172)

This is required now that the simd specification has been merged into
the upstream specification, so to run the spec tests this must always be
enabled instead of being left to the whims of the fuzzer about whether
to enable it or not.
This commit is contained in:
Alex Crichton
2022-05-20 09:57:56 -05:00
committed by GitHub
parent 4e8d54836d
commit 6cf4c95585

View File

@@ -346,6 +346,7 @@ impl Config {
config.bulk_memory_enabled = true; config.bulk_memory_enabled = true;
config.reference_types_enabled = true; config.reference_types_enabled = true;
config.multi_value_enabled = true; config.multi_value_enabled = true;
config.simd_enabled = true;
config.max_memories = 1; config.max_memories = 1;
config.max_tables = 5; config.max_tables = 5;