Lines Matching refs:fl
112 T fl; in tmain() local
209 #pragma omp sections reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… 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()
292 float fl; in main() local
389 #pragma omp sections reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… 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()
464 …return tmain(argc) + tmain(fl); // expected-note {{in instantiation of function template specializ… in main()