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

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Analysis/
H A DLoopInfoImpl.h218 /// the OldChild entry in our children list with NewChild, and updates the
219 /// parent pointer of OldChild to be null and the NewChild to be this loop.
223 replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild) { argument
224 assert(OldChild->ParentLoop == this && "This loop is already broken!");
227 std::find(SubLoops.begin(), SubLoops.end(), OldChild);
228 assert(I != SubLoops.end() && "OldChild not in loop!");
230 OldChild->ParentLoop = 0;
H A DLoopInfo.h246 /// the OldChild entry in our children list with NewChild, and updates the
247 /// parent pointer of OldChild to be null and the NewChild to be this loop.
249 void replaceChildLoopWith(LoopT *OldChild, LoopT *NewChild);

Completed in 119 milliseconds