Searched refs:TrueBO (Results 1 – 1 of 1) sorted by relevance
4252 BinaryOperator *TrueBO; in visitSelectInst() local4253 if (match(TrueVal, m_OneUse(m_BinOp(TrueBO))) && !TrueBO->isIntDivRem()) { in visitSelectInst()4254 if (auto *TrueBOSI = dyn_cast<SelectInst>(TrueBO->getOperand(0))) { in visitSelectInst()4256 replaceOperand(*TrueBO, 0, TrueBOSI->getTrueValue()); in visitSelectInst()4257 Worklist.push(TrueBO); in visitSelectInst()4261 if (auto *TrueBOSI = dyn_cast<SelectInst>(TrueBO->getOperand(1))) { in visitSelectInst()4263 replaceOperand(*TrueBO, 1, TrueBOSI->getTrueValue()); in visitSelectInst()4264 Worklist.push(TrueBO); in visitSelectInst()