Lines Matching refs:omp
18 #pragma omp parallel in xxx()
19 #pragma omp sections reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized when used… in xxx()
34 #pragma omp parallel in foobar()
35 #pragma omp sections reduction(+:ref) in foobar()
100 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
113 #pragma omp parallel in tmain()
114 #pragma omp sections reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
118 #pragma omp parallel in tmain()
119 #pragma omp sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warn… in tmain()
123 #pragma omp parallel in tmain()
124 #pragma omp sections reduction( // expected-error {{expected unqualified-id}} expected-warning {{mi… in tmain()
128 #pragma omp parallel in tmain()
129 #pragma omp sections reduction(- // expected-warning {{missing ':' after reduction identifier - ign… in tmain()
133 #pragma omp parallel in tmain()
134 #pragma omp sections reduction() // expected-error {{expected unqualified-id}} expected-warning {{m… in tmain()
138 #pragma omp parallel in tmain()
139 #pragma omp sections reduction(*) // expected-warning {{missing ':' after reduction identifier - ig… in tmain()
143 #pragma omp parallel in tmain()
144 #pragma omp sections reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{… in tmain()
148 #pragma omp parallel in tmain()
149 #pragma omp sections reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match… in tmain()
153 #pragma omp parallel in tmain()
154 #pragma omp sections reduction(| : argc, // expected-error {{expected expression}} expected-error {… in tmain()
158 #pragma omp parallel in tmain()
159 #pragma omp sections reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name, … in tmain()
163 #pragma omp parallel in tmain()
164 #pragma omp sections reduction(foo : argc) //expected-error {{incorrect reduction identifier, expec… in tmain()
168 #pragma omp parallel in tmain()
169 #pragma omp sections reduction(&& : argc) allocate , allocate(, allocate(omp_default , allocate(omp… in tmain()
173 #pragma omp parallel in tmain()
174 #pragma omp sections reduction(^ : T) // expected-error {{'T' does not refer to a value}} in tmain()
178 #pragma omp parallel in tmain()
179 #pragma omp sections reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with in… in tmain()
183 #pragma omp parallel in tmain()
184 #pragma omp sections reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with … in tmain()
188 #pragma omp parallel in tmain()
189 #pragma omp sections reduction(max : h.b) // expected-error {{expected variable name, array element… in tmain()
193 #pragma omp parallel in tmain()
194 #pragma omp sections reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduc… in tmain()
198 #pragma omp parallel in tmain()
199 #pragma omp sections reduction(* : ca) // expected-error {{const-qualified variable cannot be reduc… in tmain()
203 #pragma omp parallel in tmain()
204 #pragma omp sections reduction(- : da) // expected-error {{const-qualified variable cannot be reduc… in tmain()
208 #pragma omp parallel in tmain()
209 #pragma omp sections reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… in tmain()
213 #pragma omp parallel in tmain()
214 #pragma omp sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reductio… in tmain()
218 #pragma omp parallel in tmain()
219 #pragma omp sections reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot b… in tmain()
223 #pragma omp parallel in tmain()
224 #pragma omp sections reduction(+ : h, k) // expected-error {{threadprivate or thread local variable… in tmain()
228 #pragma omp parallel in tmain()
229 #pragma omp sections reduction(+ : o, z) // expected-error 2 {{no viable overloaded '='}} in tmain()
233 #pragma omp parallel in tmain()
234 #pragma omp sections private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument … in tmain()
238 #pragma omp parallel private(k) in tmain()
239 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP cl… in tmain()
243 #pragma omp parallel in tmain()
244 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appear o… in tmain()
248 #pragma omp parallel in tmain()
249 #pragma omp sections reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be redu… in tmain()
253 #pragma omp parallel shared(i) in tmain()
254 #pragma omp parallel reduction(min : i) in tmain()
255 #pragma omp sections reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduction'… in tmain()
259 #pragma omp parallel private(fl) // expected-note 2 {{defined as private}} in tmain()
260 #pragma omp sections reduction(+ : fl) // expected-error 2 {{reduction variable must be shared}} in tmain()
264 #pragma omp parallel reduction(* : fl) // expected-note 2 {{defined as reduction}} in tmain()
265 #pragma omp sections reduction(+ : fl) // expected-error 2 {{reduction variable must be shared}} in tmain()
275 #pragma omp threadprivate(x) // expected-note {{defined as threadprivate or thread local}}
293 #pragma omp parallel in main()
294 #pragma omp sections reduction // expected-error {{expected '(' after 'reduction'}} in main()
298 #pragma omp parallel in main()
299 #pragma omp sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warn… in main()
303 #pragma omp parallel in main()
304 #pragma omp sections reduction( // expected-error {{expected unqualified-id}} expected-warning {{mi… in main()
308 #pragma omp parallel in main()
309 #pragma omp sections reduction(- // expected-warning {{missing ':' after reduction identifier - ign… in main()
313 #pragma omp parallel in main()
314 #pragma omp sections reduction() // expected-error {{expected unqualified-id}} expected-warning {{m… in main()
318 #pragma omp parallel in main()
319 #pragma omp sections reduction(*) // expected-warning {{missing ':' after reduction identifier - ig… in main()
323 #pragma omp parallel in main()
324 #pragma omp sections reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{… in main()
328 #pragma omp parallel in main()
329 #pragma omp sections reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to mat… in main()
333 #pragma omp parallel in main()
334 #pragma omp sections reduction(| : argc, // expected-error {{expected expression}} expected-error {… in main()
338 #pragma omp parallel in main()
339 #pragma omp sections reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected vari… in main()
343 #pragma omp parallel in main()
344 #pragma omp sections reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
348 #pragma omp parallel in main()
349 #pragma omp sections reduction(&& : argc, z) in main()
353 #pragma omp parallel in main()
354 #pragma omp sections reduction(^ : S1) // expected-error {{'S1' does not refer to a value}} in main()
358 #pragma omp parallel in main()
359 #pragma omp sections reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with in… in main()
363 #pragma omp parallel in main()
364 #pragma omp sections reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with … in main()
368 #pragma omp parallel in main()
369 #pragma omp sections reduction(max : h.b) // expected-error {{expected variable name, array element… in main()
373 #pragma omp parallel in main()
374 #pragma omp sections reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduc… in main()
378 #pragma omp parallel in main()
379 #pragma omp sections reduction(* : ca) // expected-error {{const-qualified variable cannot be reduc… in main()
383 #pragma omp parallel in main()
384 #pragma omp sections reduction(- : da) // expected-error {{const-qualified variable cannot be reduc… in main()
388 #pragma omp parallel in main()
389 #pragma omp sections reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… in main()
393 #pragma omp parallel in main()
394 #pragma omp sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reductio… in main()
398 #pragma omp parallel in main()
399 #pragma omp sections reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot b… in main()
403 #pragma omp parallel in main()
404 #pragma omp sections reduction(& : e, g) // expected-error {{calling a private constructor of class… in main()
408 #pragma omp parallel in main()
409 #pragma omp sections reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread local … in main()
413 #pragma omp parallel in main()
414 #pragma omp sections reduction(+ : o) // expected-error {{no viable overloaded '='}} in main()
418 #pragma omp parallel in main()
419 #pragma omp sections private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument … in main()
423 #pragma omp parallel private(k) in main()
424 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP cl… in main()
428 #pragma omp parallel in main()
429 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear onl… in main()
433 #pragma omp parallel in main()
434 #pragma omp sections reduction(+ : r) // expected-error {{const-qualified variable cannot be reduct… in main()
438 #pragma omp parallel shared(i) in main()
439 #pragma omp parallel reduction(min : i) in main()
440 #pragma omp sections reduction(max : j) // expected-error {{argument of OpenMP clause 'reduction' m… in main()
444 #pragma omp parallel private(fl) // expected-note {{defined as private}} in main()
445 #pragma omp sections reduction(+ : fl) // expected-error {{reduction variable must be shared}} in main()
449 #pragma omp parallel reduction(* : fl) // expected-note {{defined as reduction}} in main()
450 #pragma omp sections reduction(+ : fl) // expected-error {{reduction variable must be shared}} in main()
455 #pragma omp sections reduction(+ : m) // OK in main()
459 #pragma omp sections reduction(task, + : m) // omp45-error 2 {{expected expression}} omp45-warning … in main()