From 5597ad587857f5f20b23fbd45a94abd98deaf25c Mon Sep 17 00:00:00 2001 From: Frank Emrich Date: Thu, 5 Oct 2023 17:18:03 +0100 Subject: [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. --- src/tools/tool-options.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/tools/tool-options.h') 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", -- cgit v1.2.3