Lines Matching defs:NewPred
269 CmpInst::Predicate NewPred = CmpInst::BAD_ICMP_PREDICATE;
273 case CmpInst::FCMP_UEQ: NewPred = CmpInst::ICMP_EQ; break;
275 case CmpInst::FCMP_UNE: NewPred = CmpInst::ICMP_NE; break;
277 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break;
279 case CmpInst::FCMP_UGE: NewPred = CmpInst::ICMP_SGE; break;
281 case CmpInst::FCMP_ULT: NewPred = CmpInst::ICMP_SLT; break;
283 case CmpInst::FCMP_ULE: NewPred = CmpInst::ICMP_SLE; break;
310 if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) {
319 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&
336 if (NewPred == CmpInst::ICMP_SGE || NewPred == CmpInst::ICMP_SLT) {
345 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&
371 new ICmpInst(TheBr->getIterator(), NewPred, NewAdd,