diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2012-12-02 13:10:19 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2012-12-02 13:10:19 +0000 | 
| commit | 522600a229b950314b5f4af84eba4f3e8a0ffea1 (patch) | |
| tree | 32b4679ab4b8f28e5228daafc65e9dc436935353 /lib/Analysis/LoopInfo.cpp | |
| parent | 902a7b529820e6a0aa85f98f21afaeb1805a22f8 (diff) | |
Notes
Diffstat (limited to 'lib/Analysis/LoopInfo.cpp')
| -rw-r--r-- | lib/Analysis/LoopInfo.cpp | 11 | 
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/Analysis/LoopInfo.cpp b/lib/Analysis/LoopInfo.cpp index 20c33a3d9d618..8341f9d830558 100644 --- a/lib/Analysis/LoopInfo.cpp +++ b/lib/Analysis/LoopInfo.cpp @@ -306,9 +306,11 @@ BasicBlock *Loop::getUniqueExitBlock() const {    return 0;  } +#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)  void Loop::dump() const {    print(dbgs());  } +#endif  //===----------------------------------------------------------------------===//  // UnloopUpdater implementation @@ -429,8 +431,8 @@ void UnloopUpdater::updateSubloopParents() {      Unloop->removeChildLoop(llvm::prior(Unloop->end()));      assert(SubloopParents.count(Subloop) && "DFS failed to visit subloop"); -    if (SubloopParents[Subloop]) -      SubloopParents[Subloop]->addChildLoop(Subloop); +    if (Loop *Parent = SubloopParents[Subloop]) +      Parent->addChildLoop(Subloop);      else        LI->addTopLevelLoop(Subloop);    } @@ -456,9 +458,8 @@ Loop *UnloopUpdater::getNearestLoop(BasicBlock *BB, Loop *BBLoop) {        assert(Subloop && "subloop is not an ancestor of the original loop");      }      // Get the current nearest parent of the Subloop exits, initially Unloop. -    if (!SubloopParents.count(Subloop)) -      SubloopParents[Subloop] = Unloop; -    NearLoop = SubloopParents[Subloop]; +    NearLoop = +      SubloopParents.insert(std::make_pair(Subloop, Unloop)).first->second;    }    succ_iterator I = succ_begin(BB), E = succ_end(BB);  | 
