Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:Ops

274 struct Ops {
275 Ops& operator+(const Ops&);
276 Ops& operator-(const Ops&);
277 Ops& operator&(const Ops&);
278 Ops& operator*(const Ops&);
283 // CHECK-LABEL: define nonnull %struct.Ops* @_ZN3OpsplERKS_
284 Ops& Ops::operator+(const Ops&) { return *this; }
285 // CHECK-LABEL: define nonnull %struct.Ops* @_ZN3OpsmiERKS_
286 Ops& Ops::operator-(const Ops&) { return *this; }
287 // CHECK-LABEL: define nonnull %struct.Ops* @_ZN3OpsanERKS_
288 Ops& Ops::operator&(const Ops&) { return *this; }
289 // CHECK-LABEL: define nonnull %struct.Ops* @_ZN3OpsmlERKS_
290 Ops& Ops::operator*(const Ops&) { return *this; }