Searched refs:TrueBO (Results 1 – 1 of 1) sorted by relevance
3675 BinaryOperator *TrueBO; in visitSelectInst() local3676 if (match(TrueVal, m_OneUse(m_BinOp(TrueBO))) && !TrueBO->isIntDivRem()) { in visitSelectInst()3677 if (auto *TrueBOSI = dyn_cast<SelectInst>(TrueBO->getOperand(0))) { in visitSelectInst()3679 replaceOperand(*TrueBO, 0, TrueBOSI->getTrueValue()); in visitSelectInst()3680 Worklist.push(TrueBO); in visitSelectInst()3684 if (auto *TrueBOSI = dyn_cast<SelectInst>(TrueBO->getOperand(1))) { in visitSelectInst()3686 replaceOperand(*TrueBO, 1, TrueBOSI->getTrueValue()); in visitSelectInst()3687 Worklist.push(TrueBO); in visitSelectInst()