Home | History | Annotate | Download | only in IR

Lines Matching refs:LTy

94 template <typename LTy, typename RTy> struct match_combine_or {
95 LTy L;
98 match_combine_or(const LTy &Left, const RTy &Right) : L(Left), R(Right) {}
109 template <typename LTy, typename RTy> struct match_combine_and {
110 LTy L;
113 match_combine_and(const LTy &Left, const RTy &Right) : L(Left), R(Right) {}
124 template <typename LTy, typename RTy>
125 inline match_combine_or<LTy, RTy> m_CombineOr(const LTy &L, const RTy &R) {
126 return match_combine_or<LTy, RTy>(L, R);
130 template <typename LTy, typename RTy>
131 inline match_combine_and<LTy, RTy> m_CombineAnd(const LTy &L, const RTy &R) {
132 return match_combine_and<LTy, RTy>(L, R);