Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:Op2

2255         Value *Op1 = 0, *Op2 = 0;
2259 Op2 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
2267 if ((Op1 && Op2) || (LHSI->hasOneUse() && (Op1 || Op2))) {
2271 if (!Op2)
2272 Op2 = Builder->CreateICmp(I.getPredicate(), LHSI->getOperand(2),
2274 return SelectInst::Create(LHSI->getOperand(0), Op1, Op2);
2995 Value *Op1 = 0, *Op2 = 0;
3001 Op2 = Builder->CreateFCmp(I.getPredicate(),
3005 Op2 = ConstantExpr::getCompare(I.getPredicate(), C, RHSC);
3013 return SelectInst::Create(LHSI->getOperand(0), Op1, Op2);