llvm::PatternMatch::m_c_And

Matches an And with LHS and RHS in either order.

Synopsis

Declared in <llvm/IR/PatternMatch.h>

template<
    typename LHS,
    typename RHS>
BinaryOp_match<LHS, RHS, Instruction::And, true>
m_c_And(
    LHS const& L,
    RHS const& R);

Return Value

A matcher for an And with LHS and RHS in either order.

Parameters

NameDescription
LMatcher for one operand.
RMatcher for the other operand.