Home | History | Annotate | Download | only in OpenMP

Lines Matching full: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}}
132 #pragma omp parallel shared(i)
154 const int d = 5; // expected-note {{constant variable is predetermined as shared}}
155 const int da[5] = {0}; // expected-note {{constant variable is predetermined as shared}}
194 #pragma omp parallel sections lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be lastprivate}}
210 #pragma omp parallel sections lastprivate(ca) // expected-error {{shared variable cannot be lastprivate}}
214 #pragma omp parallel sections lastprivate(da) // expected-error {{shared variable cannot be lastprivate}}
227 #pragma omp parallel sections lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivate}}