Home | History | Annotate | Download | only in arch

Lines Matching refs:rhs

69   bool operator== (const struct riscv_gdbarch_features &rhs) const
71 return (xlen == rhs.xlen && flen == rhs.flen
72 && embedded == rhs.embedded && vlen == rhs.vlen
73 && has_fflags_reg == rhs.has_fflags_reg
74 && has_frm_reg == rhs.has_frm_reg
75 && has_fcsr_reg == rhs.has_fcsr_reg);
79 bool operator!= (const struct riscv_gdbarch_features &rhs) const
81 return !((*this) == rhs);