reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1627 auto AddExpr = m_Add(m_Value(AddLHS), m_Value(AddRHS)); 1631 if (AddExpr.match(ICmpLHS) && (ICmpRHS == AddLHS || ICmpRHS == AddRHS)) 1632 return L.match(AddLHS) && R.match(AddRHS) && S.match(ICmpLHS); 1636 if (AddExpr.match(ICmpRHS) && (ICmpLHS == AddLHS || ICmpLHS == AddRHS)) 1637 return L.match(AddLHS) && R.match(AddRHS) && S.match(ICmpRHS); 1644 (m_One().match(AddLHS) || m_One().match(AddRHS))) 1645 return L.match(AddLHS) && R.match(AddRHS) && S.match(ICmpLHS); 1649 (m_One().match(AddLHS) || m_One().match(AddRHS))) 1650 return L.match(AddLHS) && R.match(AddRHS) && S.match(ICmpRHS);