Home | History | Annotate | Download | only in Scalar

Lines Matching refs:Visited

298                                          std::set<BasicBlock*> &Visited) {
299 if (!Visited.insert(BB).second) {
300 // Already visited. Without more analysis, this could indicate an infinte loop.
313 if (!isTrivialLoopExitBlockHelper(L, *SI, ExitBB, Visited))
330 std::set<BasicBlock*> Visited;
331 Visited.insert(L->getHeader()); // Branches to header make infinite loops.
333 if (isTrivialLoopExitBlockHelper(L, BB, ExitBB, Visited))