summaryrefslogtreecommitdiff
path: root/src/passes/Print.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r--src/passes/Print.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp
index bbf5f2a6b..4ca40f35a 100644
--- a/src/passes/Print.cpp
+++ b/src/passes/Print.cpp
@@ -460,9 +460,16 @@ struct PrintExpressionContents
}
void visitIf(If* curr) {
printMedium(o, "if");
- if (curr->type.isConcrete()) {
+ // Ifs are unreachable if their condition is unreachable, but in that case
+ // the arms might have some concrete type we have to account for to produce
+ // valid wat.
+ auto type = curr->type;
+ if (curr->condition->type == Type::unreachable && curr->ifFalse) {
+ type = Type::getLeastUpperBound(curr->ifTrue->type, curr->ifFalse->type);
+ }
+ if (type.isConcrete()) {
o << ' ';
- printBlockType(Signature(Type::none, curr->type));
+ printBlockType(Signature(Type::none, type));
}
}
void visitLoop(Loop* curr) {