summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2020-05-06 13:46:43 -0500
committerGitHub <noreply@github.com>2020-05-06 11:46:43 -0700
commite88bc660cf89ca84dccda358cfbadc8a7c2bc935 (patch)
treef42df6241b90ebfb17e58a0fcae407b4687759b1 /src
parent9068d3927b404ce1e9c600473255a90504034eee (diff)
downloadwabt-e88bc660cf89ca84dccda358cfbadc8a7c2bc935.tar.gz
wabt-e88bc660cf89ca84dccda358cfbadc8a7c2bc935.tar.bz2
wabt-e88bc660cf89ca84dccda358cfbadc8a7c2bc935.zip
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.
Diffstat (limited to 'src')
-rw-r--r--src/feature.def6
1 files changed, 3 insertions, 3 deletions
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)")