Home | History | Annotate | Download | only in OpenMP

Lines Matching defs:fl

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