diff options
| author | Xin Tong <trent.xin.tong@gmail.com> | 2017-02-21 19:10:58 +0000 | 
|---|---|---|
| committer | Xin Tong <trent.xin.tong@gmail.com> | 2017-02-21 19:10:58 +0000 | 
| commit | ebfe01c121e304f3e705cfd40536a8ff02ed0547 (patch) | |
| tree | 407fb0a463bf6a644c6d19671ae75d4042043b8e /llvm/lib/Transforms | |
| parent | a05a6c101d5b0fed711ce65b956e80b5ea2a85fb (diff) | |
| download | bcm5719-llvm-ebfe01c121e304f3e705cfd40536a8ff02ed0547.tar.gz bcm5719-llvm-ebfe01c121e304f3e705cfd40536a8ff02ed0547.zip | |
[LoopSimplify] Simplify how we compute UniqueExit
Summary: Simplify how we compute UniqueExit. Reuse ExitBlockSet.
Reviewers: sanjoy, efriedma, hfinkel
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D30182
llvm-svn: 295751
Diffstat (limited to 'llvm/lib/Transforms')
| -rw-r--r-- | llvm/lib/Transforms/Utils/LoopSimplify.cpp | 9 | 
1 files changed, 1 insertions, 8 deletions
| diff --git a/llvm/lib/Transforms/Utils/LoopSimplify.cpp b/llvm/lib/Transforms/Utils/LoopSimplify.cpp index 85bdeecb79c..e7ba19665d5 100644 --- a/llvm/lib/Transforms/Utils/LoopSimplify.cpp +++ b/llvm/lib/Transforms/Utils/LoopSimplify.cpp @@ -645,14 +645,7 @@ ReprocessLoop:    // loop-invariant instructions out of the way to open up more    // opportunities, and the disadvantage of having the responsibility    // to preserve dominator information. -  bool UniqueExit = true; -  if (!ExitBlocks.empty()) -    for (unsigned i = 1, e = ExitBlocks.size(); i != e; ++i) -      if (ExitBlocks[i] != ExitBlocks[0]) { -        UniqueExit = false; -        break; -      } -  if (UniqueExit) { +  if (ExitBlockSet.size() == 1) {      for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {        BasicBlock *ExitingBlock = ExitingBlocks[i];        if (!ExitingBlock->getSinglePredecessor()) continue; | 

