Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:CCVal

3519     int64_t CCVal = CC->getZExtValue();
3521 if ((IsInteger && (CCVal < CmpInst::FIRST_ICMP_PREDICATE ||
3522 CCVal > CmpInst::LAST_ICMP_PREDICATE)) ||
3523 (!IsInteger && (CCVal < CmpInst::FIRST_FCMP_PREDICATE ||
3524 CCVal > CmpInst::LAST_FCMP_PREDICATE)))
3532 Constant *CCmp = ConstantExpr::getCompare(CCVal, CSrc0, CSrc1);
3557 = CmpInst::getSwappedPredicate(static_cast<CmpInst::Predicate>(CCVal));
3565 if (CCVal != CmpInst::ICMP_EQ && CCVal != CmpInst::ICMP_NE)
3574 if (CCVal == CmpInst::ICMP_EQ &&
3600 if (CCVal == CmpInst::ICMP_EQ)