Searched refs:HasOnePredAndOneSucc (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SimplifyCFG.cpp | 4286 auto HasOnePredAndOneSucc = [](BasicBlock *BB, BasicBlock *P, BasicBlock *S) { in mergeConditionalStores() local 4289 if (!HasOnePredAndOneSucc(PFB, PBI->getParent(), QBI->getParent()) || in mergeConditionalStores() 4290 !HasOnePredAndOneSucc(QFB, QBI->getParent(), PostBB)) in mergeConditionalStores() 4292 if ((PTB && !HasOnePredAndOneSucc(PTB, PBI->getParent(), QBI->getParent())) || in mergeConditionalStores() 4293 (QTB && !HasOnePredAndOneSucc(QTB, QBI->getParent(), PostBB))) in mergeConditionalStores()
|