diff options
author | Frank Emrich <git@emrich.io> | 2023-10-05 17:18:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-05 16:18:03 +0000 |
commit | 5597ad587857f5f20b23fbd45a94abd98deaf25c (patch) | |
tree | d9229aec42410e09043715e0d83903f391b172e9 /src/tools/tool-options.h | |
parent | db68bae222b835f8190013dca45854c7cc07dadf (diff) | |
download | binaryen-5597ad587857f5f20b23fbd45a94abd98deaf25c.tar.gz binaryen-5597ad587857f5f20b23fbd45a94abd98deaf25c.tar.bz2 binaryen-5597ad587857f5f20b23fbd45a94abd98deaf25c.zip |
[typed-cont] Add feature flag (#5996)
This PR is part of a series that adds basic support for the [typed continuations
proposal](https://github.com/wasmfx/specfx).
This particular PR simply extends `FeatureSet` with a corresponding entry for
this proposal.
Diffstat (limited to 'src/tools/tool-options.h')
-rw-r--r-- | src/tools/tool-options.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/tool-options.h b/src/tools/tool-options.h index f7dd791b4..6d68ff3c1 100644 --- a/src/tools/tool-options.h +++ b/src/tools/tool-options.h @@ -93,6 +93,7 @@ struct ToolOptions : public Options { .addFeature(FeatureSet::ExtendedConst, "extended const expressions") .addFeature(FeatureSet::Strings, "strings") .addFeature(FeatureSet::MultiMemory, "multimemory") + .addFeature(FeatureSet::TypedContinuations, "typed continuations") .add("--enable-typed-function-references", "", "Deprecated compatibility flag", |