Matches an And with LHS and RHS in either order.
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);
A matcher for an And with LHS and RHS in either order.
| Name | Description |
|---|---|
| L | Matcher for one operand. |
| R | Matcher for the other operand. |