summaryrefslogtreecommitdiff
path: root/src/passes/Print.cpp
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2016-03-02 10:34:36 -0800
committerAlon Zakai <alonzakai@gmail.com>2016-03-02 10:36:47 -0800
commit14cc71b380005d3b2c5289ebfd20f5bf82ff4c79 (patch)
treec088d7aae25e97a1afc94cf5a361b0d85bcde164 /src/passes/Print.cpp
parentaf8073f0d361ee232152e411b89f48c6309281c2 (diff)
downloadbinaryen-14cc71b380005d3b2c5289ebfd20f5bf82ff4c79.tar.gz
binaryen-14cc71b380005d3b2c5289ebfd20f5bf82ff4c79.tar.bz2
binaryen-14cc71b380005d3b2c5289ebfd20f5bf82ff4c79.zip
update select changes in spec
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r--src/passes/Print.cpp2
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);