Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:Op2

2454         Value *Op1 = 0, *Op2 = 0;
2458 Op2 = ConstantExpr::getICmp(I.getPredicate(), C, RHSC);
2466 if ((Op1 && Op2) || (LHSI->hasOneUse() && (Op1 || Op2))) {
2470 if (!Op2)
2471 Op2 = Builder->CreateICmp(I.getPredicate(), LHSI->getOperand(2),
2473 return SelectInst::Create(LHSI->getOperand(0), Op1, Op2);
3251 Value *Op1 = 0, *Op2 = 0;
3257 Op2 = Builder->CreateFCmp(I.getPredicate(),
3261 Op2 = ConstantExpr::getCompare(I.getPredicate(), C, RHSC);
3269 return SelectInst::Create(LHSI->getOperand(0), Op1, Op2);