summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Winstein <keithw@cs.stanford.edu>2022-12-23 16:25:37 -0800
committerGitHub <noreply@github.com>2022-12-23 16:25:37 -0800
commitd9338f70a26cc9ee4e64da71ce3b50d4c44e0c03 (patch)
treefd063b0321fd3eee9e568bc8a5bfe0cad126c2e8 /src
parent9121857ced2e114269f29ec614414511103bdf45 (diff)
downloadwabt-d9338f70a26cc9ee4e64da71ce3b50d4c44e0c03.tar.gz
wabt-d9338f70a26cc9ee4e64da71ce3b50d4c44e0c03.tar.bz2
wabt-d9338f70a26cc9ee4e64da71ce3b50d4c44e0c03.zip
wast-parser.cc: disallow exception tag unless exceptions enabled (#2110)
Diffstat (limited to 'src')
-rw-r--r--src/wast-parser.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wast-parser.cc b/src/wast-parser.cc
index 863746c1..51cf52d8 100644
--- a/src/wast-parser.cc
+++ b/src/wast-parser.cc
@@ -1346,6 +1346,10 @@ Result WastParser::ParseElemModuleField(Module* module) {
Result WastParser::ParseTagModuleField(Module* module) {
WABT_TRACE(ParseTagModuleField);
+ if (!options_->features.exceptions_enabled()) {
+ Error(Consume().loc, "tag not allowed");
+ return Result::Error;
+ }
EXPECT(Lpar);
EXPECT(Tag);
std::string name;