Home | History | Annotate | Download | only in OpenMP

Lines Matching refs:s4

37 class S4 {          // expected-note {{'S4' declared here}}
39 S4();
40 S4(const S4 &s4);
41 S4 &operator+=(const S4 &arg) { return (*this); }
44 S4(int v) : a(v) {}
46 S4 &operator&=(S4 &arg1, S4 &arg2) { return arg1; }
157 S4 e(4); // expected-note {{'e' defined here}}