Home
last modified time | relevance | path

Searched refs:Pred1Br (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp1827 BranchInst *Pred1Br = dyn_cast<BranchInst>(Pred1->getTerminator()); in GetIfCondition() local
1829 if (!Pred1Br || !Pred2Br) in GetIfCondition()
1839 if (Pred1Br->isConditional()) in GetIfCondition()
1843 std::swap(Pred1Br, Pred2Br); in GetIfCondition()
1846 if (Pred1Br->isConditional()) { in GetIfCondition()
1855 if (Pred1Br->getSuccessor(0) == BB && in GetIfCondition()
1856 Pred1Br->getSuccessor(1) == Pred2) { in GetIfCondition()
1859 } else if (Pred1Br->getSuccessor(0) == Pred2 && in GetIfCondition()
1860 Pred1Br->getSuccessor(1) == BB) { in GetIfCondition()
1869 return Pred1Br; in GetIfCondition()