Searched refs:OldChild (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DLoopInfoImpl.h206 /// the OldChild entry in our children list with NewChild, and updates the
207 /// parent pointer of OldChild to be null and the NewChild to be this loop.
211 replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild) { argument
212 assert(OldChild->ParentLoop == this && "This loop is already broken!");
215 std::find(SubLoops.begin(), SubLoops.end(), OldChild);
216 assert(I != SubLoops.end() && "OldChild not in loop!");
218 OldChild->ParentLoop = nullptr;
H A DLoopInfo.h259 /// the OldChild entry in our children list with NewChild, and updates the
260 /// parent pointer of OldChild to be null and the NewChild to be this loop.
262 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild);

Completed in 404 milliseconds