summaryrefslogtreecommitdiff
path: root/src/wast-parser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wast-parser.cc')
-rw-r--r--src/wast-parser.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wast-parser.cc b/src/wast-parser.cc
index f950512f..c8296461 100644
--- a/src/wast-parser.cc
+++ b/src/wast-parser.cc
@@ -2781,7 +2781,8 @@ Result WastParser::ParseConst(Const* const_, ConstType const_type) {
case Opcode::I32Const: {
auto token = Consume();
if (!token.HasLiteral()) {
- return Result::Error;
+ result = Result::Error;
+ break;
}
auto sv = token.literal().text;
uint32_t u32;
@@ -2793,7 +2794,8 @@ Result WastParser::ParseConst(Const* const_, ConstType const_type) {
case Opcode::I64Const: {
auto token = Consume();
if (!token.HasLiteral()) {
- return Result::Error;
+ result = Result::Error;
+ break;
}
auto sv = token.literal().text;
uint64_t u64;