Home | History | Annotate | Download | only in OpenMP

Lines Matching full:sections

70 #pragma omp sections firstprivate // expected-error {{expected '(' after 'firstprivate'}}
75 #pragma omp sections firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
80 #pragma omp sections firstprivate() // expected-error {{expected expression}}
85 #pragma omp sections firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
90 #pragma omp sections firstprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
95 #pragma omp sections firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
100 #pragma omp sections firstprivate(argc)
105 #pragma omp sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
110 #pragma omp sections firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
115 #pragma omp sections firstprivate(argv[1]) // expected-error {{expected variable name}}
120 #pragma omp sections firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
125 #pragma omp sections firstprivate(h) // expected-error {{threadprivate or thread local variable cannot be firstprivate}}
130 #pragma omp sections linear(i) // expected-error {{unexpected OpenMP clause 'linear' in directive '#pragma omp sections'}}
137 int i; // expected-note {{variable with automatic storage duration is predetermined as private; perhaps you forget to enclose 'omp sections' directive into a parallel or another task region?}}
138 #pragma omp sections firstprivate(i) // expected-error {{firstprivate variable must be shared}}
146 #pragma omp sections firstprivate(j)
151 #pragma omp sections firstprivate(i)
156 #pragma omp sections lastprivate(g) firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
161 #pragma omp sections firstprivate(i) // expected-error {{firstprivate variable must be shared}}
166 #pragma omp sections firstprivate(i) // expected-error {{firstprivate variable must be shared}}
191 #pragma omp sections firstprivate // expected-error {{expected '(' after 'firstprivate'}}
196 #pragma omp sections firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
201 #pragma omp sections firstprivate() // expected-error {{expected expression}}
206 #pragma omp sections firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
211 #pragma omp sections firstprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
216 #pragma omp sections firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
221 #pragma omp sections firstprivate(argc)
226 #pragma omp sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}}
231 #pragma omp sections firstprivate(a, b, c, d, f) // expected-error {{firstprivate variable with incomplete type 'S1'}}
236 #pragma omp sections firstprivate(argv[1]) // expected-error {{expected variable name}}
241 #pragma omp sections firstprivate(2 * 2) // expected-error {{expected variable name}}
246 #pragma omp sections firstprivate(ba) // OK
251 #pragma omp sections firstprivate(ca) // OK
256 #pragma omp sections firstprivate(da) // OK
262 #pragma omp sections firstprivate(xa) // OK
267 #pragma omp sections firstprivate(S2::S2s) // OK
272 #pragma omp sections firstprivate(S2::S2sc) // OK
277 #pragma omp sections safelen(5) // expected-error {{unexpected OpenMP clause 'safelen' in directive '#pragma omp sections'}}
282 #pragma omp sections firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
287 #pragma omp sections firstprivate(m) // OK
292 #pragma omp sections firstprivate(h, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be firstprivate}}
297 #pragma omp sections private(xa), firstprivate(xa) // expected-error {{private variable cannot be firstprivate}} expected-note {{defined as private}}
302 #pragma omp sections firstprivate(xa) // OK: may be firstprivate
307 #pragma omp sections firstprivate(j)
312 #pragma omp sections lastprivate(g) firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
317 #pragma omp sections lastprivate(n) firstprivate(n) // OK
324 int i; // expected-note {{variable with automatic storage duration is predetermined as private; perhaps you forget to enclose 'omp sections' directive into a parallel or another task region?}}
325 #pragma omp sections firstprivate(i) // expected-error {{firstprivate variable must be shared}}
332 #pragma omp sections firstprivate(i) // expected-error {{firstprivate variable must be shared}}
337 #pragma omp sections firstprivate(i) // expected-error {{firstprivate variable must be shared}}
342 #pragma omp sections firstprivate(r) // OK