diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2018-12-14 23:57:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-14 23:57:58 -0800 |
commit | e037e7a02e3c7d739de743b891bb6e145b63156f (patch) | |
tree | 02622c4eadc2e93898feecf9e9c5504f47789839 /src/tools/feature-options.h | |
parent | c300e05873da1c8cafb654285f31959af1b3b9fc (diff) | |
download | binaryen-e037e7a02e3c7d739de743b891bb6e145b63156f.tar.gz binaryen-e037e7a02e3c7d739de743b891bb6e145b63156f.tar.bz2 binaryen-e037e7a02e3c7d739de743b891bb6e145b63156f.zip |
Fuzzing v128 and associated bug fixes (#1827)
* Fuzzing v128 and associated bug fixes
Diffstat (limited to 'src/tools/feature-options.h')
-rw-r--r-- | src/tools/feature-options.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/feature-options.h b/src/tools/feature-options.h index 1bd78d9b9..282aa4d4b 100644 --- a/src/tools/feature-options.h +++ b/src/tools/feature-options.h @@ -29,12 +29,12 @@ struct FeatureOptions : public Options { FeatureOptions(const std::string& command, const std::string& description) : Options(command, description) { (*this) - .add("--mvp-features", "-mvp", "Disable all non-MVP features (default)", + .add("--mvp-features", "-mvp", "Disable all non-MVP features", Options::Arguments::Zero, [this](Options *o, const std::string& arguments) { passOptions.features = FeatureSet::MVP; }) - .add("--all-features", "-all", "Enable all features", + .add("--all-features", "-all", "Enable all features (default)", Options::Arguments::Zero, [this](Options *o, const std::string& arguments) { passOptions.features = FeatureSet::All; |