diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wast-parser.cc | 4 |
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; |