reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
  181     if (match(V, m_And(m_Value(Op0), m_One()))) {
  183       return matchAndOrChain(Op0, MOps);
  185     if (match(V, m_And(m_Value(Op0), m_Value(Op1))))
  186       return matchAndOrChain(Op0, MOps) && matchAndOrChain(Op1, MOps);
  189     if (match(V, m_Or(m_Value(Op0), m_Value(Op1))))
  190       return matchAndOrChain(Op0, MOps) && matchAndOrChain(Op1, MOps);