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

References

include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
   99 struct Or<Pred, Preds...> : Or<Preds...> {
  102       : Or<Preds...>(std::forward<Preds>(preds)...), P(std::forward<Pred>(p)) {}
  105     return P.match(MRI, src) || Or<Preds...>::match(MRI, src);
  113 template <typename... Preds> Or<Preds...> m_any_of(Preds &&... preds) {
  114   return Or<Preds...>(std::forward<Preds>(preds)...);