diff options
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 363147b98..69dc447a8 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -162,6 +162,9 @@ struct PrintSExpression : public Visitor<PrintSExpression> { if (curr->name.is()) { o << ' ' << curr->name; } + if (isConcreteWasmType(curr->type)) { + o << ' ' << printWasmType(curr->type); + } incIndent(); auto block = curr->body->dynCast<Block>(); if (!full && block && block->name.isNull()) { |