Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp3132 BinaryOperator *TrueBO; in visitSelectInst() local
3133 if (match(TrueVal, m_OneUse(m_BinOp(TrueBO))) && in visitSelectInst()
3134 canMergeSelectThroughBinop(TrueBO)) { in visitSelectInst()
3135 if (auto *TrueBOSI = dyn_cast<SelectInst>(TrueBO->getOperand(0))) { in visitSelectInst()
3137 replaceOperand(*TrueBO, 0, TrueBOSI->getTrueValue()); in visitSelectInst()
3138 Worklist.push(TrueBO); in visitSelectInst()
3142 if (auto *TrueBOSI = dyn_cast<SelectInst>(TrueBO->getOperand(1))) { in visitSelectInst()
3144 replaceOperand(*TrueBO, 1, TrueBOSI->getTrueValue()); in visitSelectInst()
3145 Worklist.push(TrueBO); in visitSelectInst()