reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
4549 if (match(FalseVal, m_SMin(m_Specific(CmpLHS), m_APInt(C2))) && 4550 C1->slt(*C2) && Pred == CmpInst::ICMP_SLT) 4554 if (match(FalseVal, m_SMax(m_Specific(CmpLHS), m_APInt(C2))) && 4555 C1->sgt(*C2) && Pred == CmpInst::ICMP_SGT) 4559 if (match(FalseVal, m_UMin(m_Specific(CmpLHS), m_APInt(C2))) && 4560 C1->ult(*C2) && Pred == CmpInst::ICMP_ULT) 4564 if (match(FalseVal, m_UMax(m_Specific(CmpLHS), m_APInt(C2))) && 4565 C1->ugt(*C2) && Pred == CmpInst::ICMP_UGT)