diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-03-02 10:34:36 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-03-02 10:36:47 -0800 |
commit | 14cc71b380005d3b2c5289ebfd20f5bf82ff4c79 (patch) | |
tree | c088d7aae25e97a1afc94cf5a361b0d85bcde164 /src/passes/Print.cpp | |
parent | af8073f0d361ee232152e411b89f48c6309281c2 (diff) | |
download | binaryen-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.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); |