#pragma omp taskgroup task_reduction(+:ref) // expected-note {{previously marked as task_reduction with different reduction operation}}
#pragma omp taskloop in_reduction(red:ref) // expected-error{{in_reduction variable must have the same reduction operation as in a task_reduction clause}}
for(inti=0;i<10;++i)
foo();
}
voidfoobar3(int&ref){
#pragma omp taskgroup task_reduction(red:ref) // expected-note {{previously marked as task_reduction with different reduction operation}}
#pragma omp taskloop in_reduction(min:ref) // expected-error{{in_reduction variable must have the same reduction operation as in a task_reduction clause}}
classS6{// expected-note 3 {{candidate function (the implicit copy assignment operator) not viable: no known conversion from 'int' to 'const S6' for 1st argument}}
#if __cplusplus >= 201103L // C++11 or later
// expected-note@-2 3 {{candidate function (the implicit move assignment operator) not viable}}
#endif
inta;
public:
S6():a(6){}
operatorint(){return6;}
}o;
S3h,k;
#pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}}
constTd=T();// expected-note 4 {{'d' defined here}}
constTda[5]={T()};// expected-note 2 {{'da' defined here}}
Tqa[5]={T()};
Ti;
T&j=i;// expected-note 2 {{'j' defined here}}
S3&p=k;// expected-note 2 {{'p' defined here}}
constT&r=da[(int)i];// expected-note 2 {{'r' defined here}}
T&q=qa[(int)i];
Tfl;
#pragma omp taskgroup task_reduction(+:argc)
#pragma omp taskloop in_reduction // expected-error {{expected '(' after 'in_reduction'}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskgroup task_reduction(+:argc)
#pragma omp taskloop in_reduction + // expected-error {{expected '(' after 'in_reduction'}} expected-warning {{extra tokens at the end of '#pragma omp taskloop' are ignored}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskgroup task_reduction(+:argc)
#pragma omp taskloop in_reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskgroup task_reduction(+:argc)
#pragma omp taskloop in_reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
#pragma omp taskgroup task_reduction(&:argc) // expected-error {{invalid operands to binary expression ('float' and 'float')}}
#pragma omp taskloop in_reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskgroup task_reduction(|:argc) // expected-error {{invalid operands to binary expression ('float' and 'float')}}
#pragma omp taskloop in_reduction(| : argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{invalid operands to binary expression ('float' and 'float')}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskloop in_reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name, array element or array section}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskloop in_reduction(foo : argc) //expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max' or declare reduction for type 'float'}} expected-error {{incorrect reduction identifier, expected one of '+', '-', '*', '&', '|', '^', '&&', '||', 'min' or 'max' or declare reduction for type 'int'}}
#pragma omp taskloop in_reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 3 {{const-qualified variable cannot be in_reduction}} expected-error 2 {{'operator+' is a private member of 'S2'}}
#pragma omp taskloop in_reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 4 {{arguments of OpenMP clause 'in_reduction' for 'min' or 'max' must be of arithmetic type}} expected-error 3 {{const-qualified variable cannot be in_reduction}}
#pragma omp taskloop in_reduction(+ : p), in_reduction(+ : p) // expected-error 2 {{argument of OpenMP clause 'in_reduction' must reference the same object in all threads}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskgroup task_reduction(+:p)
#pragma omp taskloop in_reduction(+ : p), in_reduction(+ : p) // expected-error 2 {{variable can appear only once in OpenMP 'in_reduction' clause}} expected-note 2 {{previously referenced here}}
#pragma omp taskloop in_reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'in_reduction' must reference the same object in all threads}}
#pragma omp taskgroup task_reduction(*:fl) // expected-note 2 {{previously marked as task_reduction with different reduction operation}}
{
#pragma omp taskloop in_reduction(+ : fl) // expected-error 2 {{in_reduction variable must have the same reduction operation as in a task_reduction clause}}
for(inti=0;i<10;++i)
foo();
}
}
#pragma omp parallel
#pragma omp for reduction(- : fl)
for(inti=0;i<10;++i)
#pragma omp taskgroup task_reduction(+:fl)
#pragma omp taskloop in_reduction(+ : fl)
for(intj=0;j<10;++j)
foo();
returnT();
}
namespaceA{
doublex;
#pragma omp threadprivate(x) // expected-note {{defined as threadprivate or thread local}}
}
namespaceB{
usingA::x;
}
intmain(intargc,char**argv){
constintd=5;// expected-note 2 {{'d' defined here}}
constintda[5]={0};// expected-note {{'da' defined here}}
intqa[5]={0};
S4e(4);
S5g(5);
inti;
int&j=i;// expected-note {{'j' defined here}}
S3&p=k;// expected-note 2 {{'p' defined here}}
constint&r=da[i];// expected-note {{'r' defined here}}
int&q=qa[i];
floatfl;
#pragma omp taskloop in_reduction // expected-error {{expected '(' after 'in_reduction'}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskloop in_reduction + // expected-error {{expected '(' after 'in_reduction'}} expected-warning {{extra tokens at the end of '#pragma omp taskloop' are ignored}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskloop in_reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskloop in_reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
#pragma omp taskloop in_reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 2 {{const-qualified variable cannot be in_reduction}} expected-error {{'operator+' is a private member of 'S2'}}
#pragma omp taskloop in_reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with incomplete type 'S1'}} expected-error 2 {{arguments of OpenMP clause 'in_reduction' for 'min' or 'max' must be of arithmetic type}} expected-error 2 {{const-qualified variable cannot be in_reduction}}
#pragma omp taskloop in_reduction(& : e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{nvalid operands to binary expression ('S4' and 'S4')}} expected-error {{calling a private constructor of class 'S5'}} expected-error {{invalid operands to binary expression ('S5' and 'S5')}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskgroup task_reduction(+:k)
#pragma omp taskloop in_reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be reduction}}
#pragma omp taskloop in_reduction(+ : p), in_reduction(+ : p) // expected-error 2 {{argument of OpenMP clause 'in_reduction' must reference the same object in all threads}}
for(inti=0;i<10;++i)
foo();
#pragma omp taskgroup task_reduction(+:p)
#pragma omp taskloop in_reduction(+ : p), in_reduction(+ : p) // expected-error {{variable can appear only once in OpenMP 'in_reduction' clause}} expected-note {{previously referenced here}}
#pragma omp taskloop in_reduction(max : j) // expected-error {{argument of OpenMP clause 'in_reduction' must reference the same object in all threads}}
for(inti=0;i<10;++i)
foo();
#pragma omp parallel
#pragma omp for private(fl)
for(inti=0;i<10;++i)
#pragma omp taskgroup task_reduction(+:fl)
#pragma omp taskloop in_reduction(+ : fl)
for(intj=0;j<10;++j)
foo();
#pragma omp taskgroup task_reduction(+:fl)
#pragma omp taskloop in_reduction(+ : fl)
for(inti=0;i<10;++i)
foo();
staticintm;
#pragma omp taskgroup task_reduction(+:m)
#pragma omp taskloop in_reduction(+ : m) // OK
for(inti=0;i<10;++i)
m++;
returntmain(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}}