Lines Matching defs:NewPred
266 CmpInst::Predicate NewPred = CmpInst::BAD_ICMP_PREDICATE;
270 case CmpInst::FCMP_UEQ: NewPred = CmpInst::ICMP_EQ; break;
272 case CmpInst::FCMP_UNE: NewPred = CmpInst::ICMP_NE; break;
274 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break;
276 case CmpInst::FCMP_UGE: NewPred = CmpInst::ICMP_SGE; break;
278 case CmpInst::FCMP_ULT: NewPred = CmpInst::ICMP_SLT; break;
280 case CmpInst::FCMP_ULE: NewPred = CmpInst::ICMP_SLE; break;
307 if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
316 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&
333 if (NewPred == CmpInst::ICMP_SGE || NewPred == CmpInst::ICMP_SLT) {
342 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&
368 TheBr->getIterator(), NewPred, NewAdd,