Lines Matching refs:sections

70 #pragma omp parallel sections lastprivate // expected-error {{expected '(' after 'lastprivate'}}
74 #pragma omp parallel sections lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
78 #pragma omp parallel sections lastprivate() // expected-error {{expected expression}}
82 #pragma omp parallel sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
86 #pragma omp parallel sections lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
90 #pragma omp parallel sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
94 #pragma omp parallel sections lastprivate(argc)
98 #pragma omp parallel sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
102 #pragma omp parallel sections lastprivate(a, b) // expected-error {{lastprivate variable with incomplete type 'S1'}}
106 #pragma omp parallel sections lastprivate(argv[1]) // expected-error {{expected variable name}}
110 #pragma omp parallel sections lastprivate(e, g) // expected-error 2 {{calling a private constructor of class 'S4'}}
114 #pragma omp parallel sections lastprivate(h) // expected-error {{threadprivate or thread local variable cannot be lastprivate}}
118 #pragma omp parallel sections linear(i) // expected-error {{unexpected OpenMP clause 'linear' in directive '#pragma omp parallel sections'}}
126 #pragma omp parallel sections lastprivate(i)
134 #pragma omp parallel sections lastprivate(j) // expected-error {{arguments of OpenMP clause 'lastprivate' cannot be of reference type}}
138 #pragma omp parallel sections lastprivate(i)
162 #pragma omp parallel sections lastprivate // expected-error {{expected '(' after 'lastprivate'}}
166 #pragma omp parallel sections lastprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
170 #pragma omp parallel sections lastprivate() // expected-error {{expected expression}}
174 #pragma omp parallel sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
178 #pragma omp parallel sections lastprivate(argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
182 #pragma omp parallel sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
186 #pragma omp parallel sections lastprivate(argc)
190 #pragma omp parallel sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}}
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}}
198 #pragma omp parallel sections lastprivate(argv[1]) // expected-error {{expected variable name}}
202 #pragma omp parallel sections lastprivate(2 * 2) // expected-error {{expected variable name}}
206 #pragma omp parallel sections lastprivate(ba)
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}}
219 #pragma omp parallel sections lastprivate(xa) // OK
223 #pragma omp parallel sections lastprivate(S2::S2s)
227 #pragma omp parallel sections lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivate}}
231 #pragma omp parallel sections safelen(5) // expected-error {{unexpected OpenMP clause 'safelen' in directive '#pragma omp parallel sections'}}
235 #pragma omp parallel sections lastprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
239 #pragma omp parallel sections lastprivate(m) // expected-error {{'operator=' is a private member of 'S3'}}
243 #pragma omp parallel sections lastprivate(h, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be lastprivate}}
247 #pragma omp parallel sections private(xa), lastprivate(xa) // expected-error {{private variable cannot be lastprivate}} expected-note {{defined as private}}
251 #pragma omp parallel sections lastprivate(i)
256 #pragma omp parallel sections lastprivate(xa)
261 #pragma omp parallel sections lastprivate(xa)
265 #pragma omp parallel sections lastprivate(j) // expected-error {{arguments of OpenMP clause 'lastprivate' cannot be of reference type}}
269 #pragma omp parallel sections firstprivate(m) lastprivate(m) // expected-error {{'operator=' is a private member of 'S3'}}
273 #pragma omp parallel sections lastprivate(n) firstprivate(n) // OK