Home
last modified time | relevance | path

Searched refs:NNegZExt_match (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h1931 template <typename Op_t> struct NNegZExt_match { struct
1934 NNegZExt_match(const Op_t &OpMatch) : Op(OpMatch) {} in NNegZExt_match() argument
2050 inline NNegZExt_match<OpTy> m_NNegZExt(const OpTy &Op) { in m_NNegZExt()
2051 return NNegZExt_match<OpTy>(Op); in m_NNegZExt()
2068 inline match_combine_or<CastInst_match<OpTy, SExtInst>, NNegZExt_match<OpTy>>