summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/wasm-binary.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wasm-binary.h b/src/wasm-binary.h
index 1f6b5b0e4..16e24fcb8 100644
--- a/src/wasm-binary.h
+++ b/src/wasm-binary.h
@@ -712,6 +712,7 @@ public:
case f64: o << int8_t(BinaryConsts::F64##code); break; \
default: abort(); \
} \
+ break; \
}
#define INT_TYPED_CODE(code) { \
switch (curr->left->type) { \
@@ -719,6 +720,7 @@ public:
case i64: o << int8_t(BinaryConsts::I64##code); break; \
default: abort(); \
} \
+ break; \
}
#define FLOAT_TYPED_CODE(code) { \
switch (curr->left->type) { \
@@ -726,6 +728,7 @@ public:
case f64: o << int8_t(BinaryConsts::F64##code); break; \
default: abort(); \
} \
+ break; \
}
switch (curr->op) {