diff options
author | Alon Zakai <alonzakai@gmail.com> | 2017-02-28 19:21:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-28 19:21:27 -0800 |
commit | 8968a50fd4248860cc79ee20eabf4071336f0481 (patch) | |
tree | 58ea1bece17d02f1544eb4decb824fc36ae59afe /src | |
parent | 9607b1b7692edad2fe379ade5ee146132fa5f0d7 (diff) | |
download | binaryen-8968a50fd4248860cc79ee20eabf4071336f0481.tar.gz binaryen-8968a50fd4248860cc79ee20eabf4071336f0481.tar.bz2 binaryen-8968a50fd4248860cc79ee20eabf4071336f0481.zip |
do not merge a drop out of an if if the sides have different types, then the if would be invalid (#927)
Diffstat (limited to 'src')
-rw-r--r-- | src/passes/Vacuum.cpp | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/passes/Vacuum.cpp b/src/passes/Vacuum.cpp index 1b4da4c47..63a098fc0 100644 --- a/src/passes/Vacuum.cpp +++ b/src/passes/Vacuum.cpp @@ -213,11 +213,15 @@ struct Vacuum : public WalkerPass<ExpressionStackWalker<Vacuum>> { curr->ifFalse = nullptr; curr->condition = Builder(*getModule()).makeUnary(EqZInt32, curr->condition); } else if (curr->ifTrue->is<Drop>() && curr->ifFalse->is<Drop>()) { - // instead of dropping both sides, drop the if - curr->ifTrue = curr->ifTrue->cast<Drop>()->value; - curr->ifFalse = curr->ifFalse->cast<Drop>()->value; - curr->finalize(); - replaceCurrent(Builder(*getModule()).makeDrop(curr)); + // instead of dropping both sides, drop the if, if they are the same type + auto* left = curr->ifTrue->cast<Drop>()->value; + auto* right = curr->ifFalse->cast<Drop>()->value; + if (left->type == right->type) { + curr->ifTrue = left; + curr->ifFalse = right; + curr->finalize(); + replaceCurrent(Builder(*getModule()).makeDrop(curr)); + } } } else { // no else |