From e88bc660cf89ca84dccda358cfbadc8a7c2bc935 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 6 May 2020 13:46:43 -0500 Subject: Enabled merged proposals by default (#1405) This enables three proposals by default since they've been merged into the upstream specification: * `saturating-float-to-int` - WebAssembly/spec#1143 * `sign-extension` - WebAssembly/spec#1144 * `multi-value` - WebAssembly/spec#1145 Most of the fallout from this is in the test suite with lots of `--enable` flags getting removed and some tests which now unconditionally pass also getting removed. Two spec tests explicitly pass `--disable` until the spec test submodule is updated. --- src/feature.def | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/feature.def b/src/feature.def index 6b9c99db..880ccde9 100644 --- a/src/feature.def +++ b/src/feature.def @@ -24,11 +24,11 @@ WABT_FEATURE(exceptions, "exceptions", false, "Experimental exception handling") WABT_FEATURE(mutable_globals, "mutable-globals", true, "Import/export mutable globals") -WABT_FEATURE(sat_float_to_int, "saturating-float-to-int", false, "Saturating float-to-int operators") -WABT_FEATURE(sign_extension, "sign-extension", false, "Sign-extension operators") +WABT_FEATURE(sat_float_to_int, "saturating-float-to-int", true, "Saturating float-to-int operators") +WABT_FEATURE(sign_extension, "sign-extension", true, "Sign-extension operators") WABT_FEATURE(simd, "simd", false, "SIMD support") WABT_FEATURE(threads, "threads", false, "Threading support") -WABT_FEATURE(multi_value, "multi-value", false, "Multi-value") +WABT_FEATURE(multi_value, "multi-value", true, "Multi-value") WABT_FEATURE(tail_call, "tail-call", false, "Tail-call support") WABT_FEATURE(bulk_memory, "bulk-memory", false, "Bulk-memory operations") WABT_FEATURE(reference_types, "reference-types", false, "Reference types (anyref)") -- cgit v1.2.3