Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:InC

805       Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i));
806 if (InC && !isa<ConstantExpr>(InC))
807 InV = InC->isNullValue() ? FalseVInPred : TrueVInPred;
817 if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i)))
818 InV = ConstantExpr::getCompare(CI->getPredicate(), InC, C);
831 if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i)))
832 InV = ConstantExpr::get(I.getOpcode(), InC, C);
843 if (Constant *InC = dyn_cast<Constant>(PN->getIncomingValue(i)))
844 InV = ConstantExpr::getCast(CI->getOpcode(), InC, RetTy);