summaryrefslogtreecommitdiff
path: root/src/tools/tool-options.h
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2019-07-03 15:56:04 -0700
committerGitHub <noreply@github.com>2019-07-03 15:56:04 -0700
commit2a138faec4b21ee2eae89f00d1e00987bab6305a (patch)
tree9a6482a76a5e796fa27fd95e9a299c7b37bf17a3 /src/tools/tool-options.h
parent256187c823ab6a04b3b55c3d9d3497ae2004d165 (diff)
downloadbinaryen-2a138faec4b21ee2eae89f00d1e00987bab6305a.tar.gz
binaryen-2a138faec4b21ee2eae89f00d1e00987bab6305a.tar.bz2
binaryen-2a138faec4b21ee2eae89f00d1e00987bab6305a.zip
Initial tail call implementation (#2197)
Including parsing, printing, assembling, disassembling. TODO: - interpreting - effects - finalization and typing - fuzzing - JS/C API
Diffstat (limited to 'src/tools/tool-options.h')
-rw-r--r--src/tools/tool-options.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/tool-options.h b/src/tools/tool-options.h
index 016154252..7c1151c7f 100644
--- a/src/tools/tool-options.h
+++ b/src/tools/tool-options.h
@@ -70,6 +70,7 @@ struct ToolOptions : public Options {
.addFeature(FeatureSet::BulkMemory, "bulk memory operations")
.addFeature(FeatureSet::ExceptionHandling,
"exception handling operations")
+ .addFeature(FeatureSet::TailCall, "tail call operations")
.add("--no-validation",
"-n",
"Disables validation, assumes inputs are correct",