Lines Matching full:reduction
30 #pragma omp simd reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized when used her… in xxx()
43 #pragma omp simd reduction(+:ref) in foobar()
120 #pragma omp simd reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
123 #pragma omp simd reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning … in tmain()
126 #pragma omp simd reduction( // expected-error {{expected unqualified-id}} expected-warning {{missin… in tmain()
129 #pragma omp simd reduction(- // expected-warning {{missing ':' after reduction identifier - ignorin… in tmain()
132 #pragma omp simd reduction() // expected-error {{expected unqualified-id}} expected-warning {{missi… in tmain()
135 #pragma omp simd reduction(*) // expected-warning {{missing ':' after reduction identifier - ignori… in tmain()
138 #pragma omp simd reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{miss… in tmain()
141 #pragma omp simd reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match thi… in tmain()
144 #pragma omp simd reduction(| : argc, // expected-error {{expected expression}} expected-error {{exp… in tmain()
147 #pragma omp simd reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name, arra… in tmain()
150 …reduction(foo : argc) //omp45-error {{incorrect reduction identifier, expected one of '+', '-', '*… in tmain()
153 #pragma omp simd reduction(&& : argc) allocate , allocate(, allocate(omp_default , allocate(omp_def… in tmain()
156 #pragma omp simd reduction(^ : T) // expected-error {{'T' does not refer to a value}} in tmain()
159 …reduction(+ : z, a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1… in tmain()
162 …reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in tmain()
165 #pragma omp simd reduction(max : h.b) // expected-error {{expected variable name, array element or … in tmain()
168 #pragma omp simd reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduction… in tmain()
171 #pragma omp simd reduction(* : ca) // expected-error {{const-qualified variable cannot be reduction… in tmain()
174 …reduction(- : da) // expected-error 2 {{const-qualified variable cannot be reduction}} omp52-warni… in tmain()
177 #pragma omp simd reduction(^ : fl) // expected-error {{invalid operands to binary expression ('floa… in tmain()
180 #pragma omp simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}} in tmain()
183 #pragma omp simd reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot be re… in tmain()
186 #pragma omp simd reduction(+ : h, k) // expected-error {{threadprivate or thread local variable can… in tmain()
189 #pragma omp simd reduction(+ : o) // expected-error 2 {{no viable overloaded '='}} in tmain()
192 #pragma omp simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument of O… in tmain()
195 #pragma omp simd reduction(+ : j), reduction(+ : q) // OK in tmain()
199 #pragma omp simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP clause… in tmain()
202 #pragma omp simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appear only … in tmain()
205 #pragma omp simd reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be reductio… in tmain()
209 #pragma omp parallel reduction(min : i) in tmain()
210 #pragma omp simd reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduction' mus… in tmain()
214 #pragma omp simd reduction(+ : fl) in tmain()
217 #pragma omp parallel reduction(* : fl) in tmain()
218 #pragma omp simd reduction(+ : fl) in tmain()
245 #pragma omp simd reduction // expected-error {{expected '(' after 'reduction'}} in main()
248 #pragma omp simd reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning … in main()
251 #pragma omp simd reduction( // expected-error {{expected unqualified-id}} expected-warning {{missin… in main()
254 #pragma omp simd reduction(- // expected-warning {{missing ':' after reduction identifier - ignorin… in main()
257 #pragma omp simd reduction() // expected-error {{expected unqualified-id}} expected-warning {{missi… in main()
260 #pragma omp simd reduction(*) // expected-warning {{missing ':' after reduction identifier - ignori… in main()
263 #pragma omp simd reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{miss… in main()
266 …reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} omp45-… in main()
269 #pragma omp simd reduction(| : argc, // expected-error {{expected expression}} expected-error {{exp… in main()
272 #pragma omp simd reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable… in main()
275 #pragma omp simd reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
278 #pragma omp simd reduction(&& : argc, z) in main()
281 #pragma omp simd reduction(^ : S1) // expected-error {{'S1' does not refer to a value}} in main()
284 …reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}}… in main()
287 …reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'… in main()
290 #pragma omp simd reduction(max : h.b) // expected-error {{expected variable name, array element or … in main()
293 #pragma omp simd reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduction… in main()
296 #pragma omp simd reduction(* : ca) // expected-error {{const-qualified variable cannot be reduction… in main()
299 …reduction(- : da) // expected-error {{const-qualified variable cannot be reduction}} omp52-warning… in main()
302 #pragma omp simd reduction(^ : fl) // expected-error {{invalid operands to binary expression ('floa… in main()
305 #pragma omp simd reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reduction}} in main()
308 #pragma omp simd reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot be re… in main()
311 #pragma omp simd reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4… in main()
314 #pragma omp simd reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread local vari… in main()
317 #pragma omp simd reduction(+ : o) // expected-error {{no viable overloaded '='}} in main()
320 #pragma omp simd private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument of O… in main()
324 #pragma omp simd reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP clause… in main()
327 #pragma omp simd reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear only on… in main()
330 #pragma omp simd reduction(+ : r) // expected-error {{const-qualified variable cannot be reduction}} in main()
334 #pragma omp parallel reduction(min : i) in main()
335 #pragma omp simd reduction(max : j) // expected-error {{argument of OpenMP clause 'reduction' must … in main()
339 #pragma omp simd reduction(+ : fl) in main()
342 #pragma omp parallel reduction(* : fl) in main()
343 #pragma omp simd reduction(+ : fl) in main()
346 …reduction(task, + : fl) // omp45-error 2 {{expected expression}} omp45-warning {{missing ':' after… in main()