diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-03-02 17:36:58 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-03-02 17:36:58 -0800 |
commit | e5f02a129130d873ba3bd855a06ba488512abf65 (patch) | |
tree | 1563c5cdb1cc6c0287f92937959da54259a8479d /src/passes/Print.cpp | |
parent | e68cf04a0df1dfbfa2d7f5f892669b728c5d8b11 (diff) | |
parent | 7543689ae566f2cde0fc4d2d0898f969d1e96c75 (diff) | |
download | binaryen-e5f02a129130d873ba3bd855a06ba488512abf65.tar.gz binaryen-e5f02a129130d873ba3bd855a06ba488512abf65.tar.bz2 binaryen-e5f02a129130d873ba3bd855a06ba488512abf65.zip |
Merge pull request #217 from WebAssembly/spec-fixes
Fixes for latest spec test updates
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); |