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/wat-desugar.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/wat-desugar.txt')
-rw-r--r-- | test/help/wat-desugar.txt | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/test/help/wat-desugar.txt b/test/help/wat-desugar.txt index 15df0e0f..69072c72 100644 --- a/test/help/wat-desugar.txt +++ b/test/help/wat-desugar.txt @@ -16,25 +16,25 @@ examples: $ wat-desugar --generate-names test.wat options: - --help Print this help message - --version Print version information - -o, --output=FILE Output file for the formatted file - --debug-parser Turn on debugging the parser of wat files - -f, --fold-exprs Write folded expressions where possible - --inline-exports Write all exports inline - --inline-imports Write all imports inline - --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 - --generate-names Give auto-generated names to non-named functions, types, etc. + --help Print this help message + --version Print version information + -o, --output=FILE Output file for the formatted file + --debug-parser Turn on debugging the parser of wat files + -f, --fold-exprs Write folded expressions where possible + --inline-exports Write all exports inline + --inline-imports Write all imports inline + --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 + --generate-names Give auto-generated names to non-named functions, types, etc. ;;; STDOUT ;;) |