diff options
author | Xin Tong <trent.xin.tong@gmail.com> | 2017-03-20 00:30:19 +0000 |
---|---|---|
committer | Xin Tong <trent.xin.tong@gmail.com> | 2017-03-20 00:30:19 +0000 |
commit | cbf04d95e6295cc35d85490fb03f7c83e9180dc5 (patch) | |
tree | 4a0b7302ca0806868be66bedc01af129c79f96b4 /llvm/lib/Transforms/Scalar/Sink.cpp | |
parent | ff9749f7592ca84813443b26627e3703835b4ca1 (diff) | |
download | bcm5719-llvm-cbf04d95e6295cc35d85490fb03f7c83e9180dc5.tar.gz bcm5719-llvm-cbf04d95e6295cc35d85490fb03f7c83e9180dc5.zip |
Remove unnecessary IDom check
Summary: This Idom check seems unnecessary. The immediate children of a node on the Dominator Tree should always be the IDom of its immediate children in this case.
Reviewers: hfinkel, majnemer, dberlin
Reviewed By: dberlin
Subscribers: dberlin, davide, llvm-commits
Differential Revision: https://reviews.llvm.org/D26954
llvm-svn: 298232
Diffstat (limited to 'llvm/lib/Transforms/Scalar/Sink.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/Sink.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Scalar/Sink.cpp b/llvm/lib/Transforms/Scalar/Sink.cpp index 504a22a229c..102e9eaeab7 100644 --- a/llvm/lib/Transforms/Scalar/Sink.cpp +++ b/llvm/lib/Transforms/Scalar/Sink.cpp @@ -164,13 +164,14 @@ static bool SinkInstruction(Instruction *Inst, // Instructions can only be sunk if all their uses are in blocks // dominated by one of the successors. - // Look at all the postdominators and see if we can sink it in one. + // Look at all the dominated blocks and see if we can sink it in one. DomTreeNode *DTN = DT.getNode(Inst->getParent()); for (DomTreeNode::iterator I = DTN->begin(), E = DTN->end(); I != E && SuccToSinkTo == nullptr; ++I) { BasicBlock *Candidate = (*I)->getBlock(); - if ((*I)->getIDom()->getBlock() == Inst->getParent() && - IsAcceptableTarget(Inst, Candidate, DT, LI)) + // A node always immediate-dominates its children on the dominator + // tree. + if (IsAcceptableTarget(Inst, Candidate, DT, LI)) SuccToSinkTo = Candidate; } |