diff options
author | Alex Crichton <alex@alexcrichton.com> | 2020-05-06 13:46:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 11:46:43 -0700 |
commit | e88bc660cf89ca84dccda358cfbadc8a7c2bc935 (patch) | |
tree | f42df6241b90ebfb17e58a0fcae407b4687759b1 /test/help/wasm-validate.txt | |
parent | 9068d3927b404ce1e9c600473255a90504034eee (diff) | |
download | wabt-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 'test/help/wasm-validate.txt')
-rw-r--r-- | test/help/wasm-validate.txt | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/test/help/wasm-validate.txt b/test/help/wasm-validate.txt index 8e16befd..7cec73cb 100644 --- a/test/help/wasm-validate.txt +++ b/test/help/wasm-validate.txt @@ -10,22 +10,22 @@ examples: $ wasm-validate test.wasm options: - --help Print this help message - --version Print version information - -v, --verbose Use multiple times for more info - --enable-exceptions Enable Experimental exception handling - --disable-mutable-globals Disable Import/export mutable globals - --enable-saturating-float-to-int Enable Saturating float-to-int operators - --enable-sign-extension Enable Sign-extension operators - --enable-simd Enable SIMD support - --enable-threads Enable Threading support - --enable-multi-value Enable Multi-value - --enable-tail-call Enable Tail-call support - --enable-bulk-memory Enable Bulk-memory operations - --enable-reference-types Enable Reference types (anyref) - --enable-annotations Enable Custom annotation syntax - --enable-gc Enable Garbage collection - --enable-all Enable all features - --no-debug-names Ignore debug names in the binary file - --ignore-custom-section-errors Ignore errors in custom sections + --help Print this help message + --version Print version information + -v, --verbose Use multiple times for more info + --enable-exceptions Enable Experimental exception handling + --disable-mutable-globals Disable Import/export mutable globals + --disable-saturating-float-to-int Disable Saturating float-to-int operators + --disable-sign-extension Disable Sign-extension operators + --enable-simd Enable SIMD support + --enable-threads Enable Threading support + --disable-multi-value Disable Multi-value + --enable-tail-call Enable Tail-call support + --enable-bulk-memory Enable Bulk-memory operations + --enable-reference-types Enable Reference types (anyref) + --enable-annotations Enable Custom annotation syntax + --enable-gc Enable Garbage collection + --enable-all Enable all features + --no-debug-names Ignore debug names in the binary file + --ignore-custom-section-errors Ignore errors in custom sections ;;; STDOUT ;;) |