Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:RHS

95     bool operator==(const OrderGlobalInits &RHS) const {
96 return priority == RHS.priority &&
97 lex_order == RHS.lex_order;
100 bool operator<(const OrderGlobalInits &RHS) const {
101 if (priority < RHS.priority)
104 return priority == RHS.priority && lex_order < RHS.lex_order;
343 const GlobalInitData &RHS) const {
344 return LHS.first.priority < RHS.first.priority;