Home | History | Annotate | Download | only in OpenMP

Lines Matching full:shared

19   static float S2s; // expected-note {{static data member is predetermined as shared}}
22 const float S2::S2sc = 0; // expected-note {{static data member is predetermined as shared}}
33 const S3 c; // expected-note {{global variable is predetermined as shared}}
34 const S3 ca[5]; // expected-note {{global variable is predetermined as shared}}
35 extern const int f; // expected-note {{global variable is predetermined as shared}}
119 #pragma omp parallel shared(i)
131 const int d = 5; // expected-note {{constant variable is predetermined as shared}}
132 const int da[5] = {0}; // expected-note {{constant variable is predetermined as shared}}
162 #pragma omp simd lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
174 #pragma omp simd lastprivate(ca) // expected-error {{shared variable cannot be lastprivate}}
177 #pragma omp simd lastprivate(da) // expected-error {{shared variable cannot be lastprivate}}
184 #pragma omp simd lastprivate(S2::S2s) // expected-error {{shared variable cannot be lastprivate}}
187 #pragma omp simd lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivate}}