diff options
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 3c3cdd659..f365db02f 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -314,7 +314,7 @@ struct PrintSExpression : public WasmVisitor<PrintSExpression, void> { } void visitSelect(Select *curr) { o << '('; - prepareColor(o) << printWasmType(curr->type) << ".select"; + prepareColor(o) << "select"; incIndent(); printFullLine(curr->ifTrue); printFullLine(curr->ifFalse); |