Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:p1

185 static bool PredicatesFoldable(ICmpInst::Predicate p1, ICmpInst::Predicate p2) {
186 return (CmpInst::isSigned(p1) == CmpInst::isSigned(p2)) ||
187 (CmpInst::isSigned(p1) && ICmpInst::isEquality(p2)) ||
188 (CmpInst::isSigned(p2) && ICmpInst::isEquality(p1));