Home | History | Annotate | Download | only in OpenMP

Lines Matching refs:S2

12 class S2 {
16 S2() : a(0) {}
17 S2(S2 &s2) : a(s2.a) {}
18 const S2 &operator =(const S2&) const;
19 S2 &operator =(const S2&);
23 const float S2::S2sc = 0; // expected-note {{static data member is predetermined as shared}}
24 const S2 b;
25 const S2 ba[5];
227 #pragma omp taskloop simd lastprivate(S2::S2s) // expected-error {{shared variable cannot be lastprivate}}
231 #pragma omp taskloop simd lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivate}}