Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Alternate

220     // Walk the alternate and current candidate back to find a common ancestor.
221 auto *Alternate = Pred;
222 while (Alternate != Candidate) {
223 if (Candidate->BlockID > Alternate->BlockID)
226 Alternate = Alternate->DominatorNode.Parent;
247 // Walk the alternate and current candidate back to find a common ancestor.
248 auto *Alternate = Succ;
249 while (Alternate != Candidate) {
250 if (Candidate->BlockID < Alternate->BlockID)
253 Alternate = Alternate->PostDominatorNode.Parent;