Lines Matching refs:fl
83 T fl; in tmain() local
180 #pragma omp sections reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… in tmain()
230 #pragma omp parallel private(fl) // expected-note 2 {{defined as private}} in tmain()
231 #pragma omp sections reduction(+ : fl) // expected-error 2 {{reduction variable must be shared}} in tmain()
235 #pragma omp parallel reduction(* : fl) // expected-note 2 {{defined as reduction}} in tmain()
236 #pragma omp sections reduction(+ : fl) // expected-error 2 {{reduction variable must be shared}} in tmain()
263 float fl; in main() local
360 #pragma omp sections reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… in main()
415 #pragma omp parallel private(fl) // expected-note {{defined as private}} in main()
416 #pragma omp sections reduction(+ : fl) // expected-error {{reduction variable must be shared}} in main()
420 #pragma omp parallel reduction(* : fl) // expected-note {{defined as reduction}} in main()
421 #pragma omp sections reduction(+ : fl) // expected-error {{reduction variable must be shared}} in main()
431 …return tmain(argc) + tmain(fl); // expected-note {{in instantiation of function template specializ… in main()