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

References

include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
   80 struct And<Pred, Preds...> : And<Preds...> {
   83       : And<Preds...>(std::forward<Preds>(preds)...), P(std::forward<Pred>(p)) {
   87     return P.match(MRI, src) && And<Preds...>::match(MRI, src);
  109 template <typename... Preds> And<Preds...> m_all_of(Preds &&... preds) {
  110   return And<Preds...>(std::forward<Preds>(preds)...);