summaryrefslogtreecommitdiff
path: root/src/tools/wasm2c.cc
diff options
context:
space:
mode:
authorSoni L <EnderMoneyMod@gmail.com>2023-03-05 17:06:36 -0300
committerGitHub <noreply@github.com>2023-03-05 20:06:36 +0000
commit626faf12329e841ea393b58868c1b8df7e848c5d (patch)
tree0829915cb561792da937cf0b4f13ba6bffe8fceb /src/tools/wasm2c.cc
parente426908d8f0022b13a7ba39725e96fcbe18cb220 (diff)
downloadwabt-626faf12329e841ea393b58868c1b8df7e848c5d.tar.gz
wabt-626faf12329e841ea393b58868c1b8df7e848c5d.tar.bz2
wabt-626faf12329e841ea393b58868c1b8df7e848c5d.zip
Fix longstanding typo (#2160)
Makes it possible to wasm2c --disable-sign-extension
Diffstat (limited to 'src/tools/wasm2c.cc')
-rw-r--r--src/tools/wasm2c.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/wasm2c.cc b/src/tools/wasm2c.cc
index 8994b1ac..b79b34d2 100644
--- a/src/tools/wasm2c.cc
+++ b/src/tools/wasm2c.cc
@@ -57,7 +57,7 @@ examples:
)";
static const std::string supported_features[] = {
- "multi-memory", "multi-value", "sign-extend", "saturating-float-to-int",
+ "multi-memory", "multi-value", "sign-extension", "saturating-float-to-int",
"exceptions", "memory64"};
static bool IsFeatureSupported(const std::string& feature) {