Searched refs:TrueBO (Results 1 – 1 of 1) sorted by relevance
3089 BinaryOperator *TrueBO; in visitSelectInst() local3090 if (match(TrueVal, m_OneUse(m_BinOp(TrueBO))) && in visitSelectInst()3091 canMergeSelectThroughBinop(TrueBO)) { in visitSelectInst()3092 if (auto *TrueBOSI = dyn_cast<SelectInst>(TrueBO->getOperand(0))) { in visitSelectInst()3094 replaceOperand(*TrueBO, 0, TrueBOSI->getTrueValue()); in visitSelectInst()3095 Worklist.push(TrueBO); in visitSelectInst()3099 if (auto *TrueBOSI = dyn_cast<SelectInst>(TrueBO->getOperand(1))) { in visitSelectInst()3101 replaceOperand(*TrueBO, 1, TrueBOSI->getTrueValue()); in visitSelectInst()3102 Worklist.push(TrueBO); in visitSelectInst()