summaryrefslogtreecommitdiff
path: root/src/wasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm.h')
-rw-r--r--src/wasm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm.h b/src/wasm.h
index 20a7b34ef..e30a891b9 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -501,13 +501,13 @@ public:
class Break : public Expression {
public:
- Break() : Expression(BreakId), condition(nullptr), value(nullptr) {
+ Break() : Expression(BreakId), value(nullptr), condition(nullptr) {
type = unreachable;
}
- Expression *condition;
Name name;
Expression *value;
+ Expression *condition;
std::ostream& doPrint(std::ostream &o, unsigned indent) {
if (condition) {