Home | History | Annotate | Download | only in OpenMP

Lines Matching refs:s5

47 class S5 {
49 S5() : a(0) {}
50 S5(const S5 &s5) : a(s5.a) {}
51 S5 &operator+=(const S5 &arg);
54 S5(int v) : a(v) {}
212 S5 g(5); // expected-note {{'g' defined here}}
308 #pragma omp for reduction(& : e, g) // expected-error {{reduction variable must have an accessible, unambiguous default constructor}} expected-error {{variable of type 'S5' is not valid for specified reduction operation}}