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

References

include/llvm/IR/PatternMatch.h
 1453     if ((TrueVal != LHS || FalseVal != RHS) &&
 1454         (TrueVal != RHS || FalseVal != LHS))
 1462     return (L.match(LHS) && R.match(RHS)) ||
 1463            (Commutable && L.match(RHS) && R.match(LHS));