// expected-error@+1 {{condition of OpenMP for loop must be a relational comparison ('<', '<=', '>', or '>=') of loop variable 'i'}}
for(inti=0;;i++)
c[i]=a[i];
// Ok.
#pragma omp target
#pragma omp teams distribute
for(inti=11;i>10;i--)
c[i]=a[i];
// Ok.
#pragma omp target
#pragma omp teams distribute
for(inti=0;i<10;++i)
c[i]=a[i];
// Ok.
#pragma omp target
#pragma omp teams distribute
for(ii=0;ii<10;++ii)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
for(ii=0;ii<10;++jj)
c[ii]=a[jj];
#pragma omp target
#pragma omp teams distribute
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
for(ii=0;ii<10;++++ii)
c[ii]=a[ii];
// Ok but undefined behavior (in general, cannot check that incr
// is really loop-invariant).
#pragma omp target
#pragma omp teams distribute
for(ii=0;ii<10;ii=ii+ii)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-error@+1 {{expression must have integral or unscoped enumeration type, not 'float'}}
for(ii=0;ii<10;ii=ii+1.0f)
c[ii]=a[ii];
// Ok - step was converted to integer type.
#pragma omp target
#pragma omp teams distribute
for(ii=0;ii<10;ii=ii+(int)1.1f)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
for(ii=0;ii<10;jj=ii+2)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-warning@+2 {{relational comparison result unused}}
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
for(ii=0;ii<10;jj>kk+2)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
for(ii=0;ii<10;)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-warning@+2 {{expression result unused}}
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
for(ii=0;ii<10;!ii)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
for(ii=0;ii<10;ii?++ii:++jj)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-error@+1 {{increment clause of OpenMP for loop must perform simple addition or subtraction on loop variable 'ii'}}
for(ii=0;ii<10;ii=ii<10)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
for(ii=0;ii<10;ii=ii+0)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
for(ii=0;ii<10;ii=ii+(int)(0.8-0.45))
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
for(ii=0;(ii)<10;ii-=25)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
for(ii=0;(ii<10);ii-=0)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-note@+2 {{loop step is expected to be negative due to this condition}}
// expected-error@+1 {{increment expression must cause 'ii' to decrease on each iteration of OpenMP for loop}}
for(ii=0;ii>10;(ii+=0))
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
for(ii=0;ii<10;(ii)=(1-1)+(ii))
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-note@+2 {{loop step is expected to be negative due to this condition}}
// expected-error@+1 {{increment expression must cause 'ii' to decrease on each iteration of OpenMP for loop}}
for((ii=0);ii>10;(ii-=0))
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
// expected-error@+1 {{increment expression must cause 'ii' to increase on each iteration of OpenMP for loop}}
for(ii=0;(ii<10);(ii-=0))
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute firstprivate(ii) // expected-note {{defined as firstprivate}}
// expected-error@+1 {{loop iteration variable in the associated loop of 'omp teams distribute' directive may not be firstprivate, predetermined as private}}
for(ii=0;ii<10;ii++)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute private(ii)
// OK
for(ii=0;ii<10;ii++)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute lastprivate(ii)
// OK
for(ii=0;ii<10;ii++)
c[ii]=a[ii];
#pragma omp target
#pragma omp teams distribute
// expected-error@+1 {{loop iteration variable in the associated loop of 'omp teams distribute' directive may not be threadprivate or thread local, predetermined as private}}
for(sii=0;sii<10;sii++)
c[sii]=a[sii];
{
#pragma omp target
#pragma omp teams distribute collapse(2)
for(ii=0;ii<10;ii+=1)
for(globalii=0;globalii<10;globalii+=1)
c[globalii]+=a[globalii]+ii;
}
#pragma omp target
#pragma omp teams distribute
// expected-error@+1 {{statement after '#pragma omp teams distribute' must be a for loop}}
for(auto&item:a){
item=item+1;
}
#pragma omp target
#pragma omp teams distribute
// expected-note@+2 {{loop step is expected to be positive due to this condition}}
// expected-error@+1 {{increment expression must cause 'i' to increase on each iteration of OpenMP for loop}}
for(unsignedi=9;i<10;i--){
c[i]=a[i]+b[i];
}
int(*lb)[4]=nullptr;
#pragma omp target
#pragma omp teams distribute
for(int(*p)[4]=lb;p<lb+8;++p){
}
#pragma omp target
#pragma omp teams distribute
// expected-warning@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}
for(GoodIterI=begin;I<end;++I)// expected-warning 2 {{Non-trivial type 'GoodIter' is mapped, only trivial types are guaranteed to be mapped correctly}}
for(GoodIterI=begin;I>=end;--I)// expected-warning 2 {{Non-trivial type 'GoodIter' is mapped, only trivial types are guaranteed to be mapped correctly}}
for(GoodIterI(begin);I<end;++I)// expected-warning 2 {{Non-trivial type 'GoodIter' is mapped, only trivial types are guaranteed to be mapped correctly}}
for(GoodIterI(nullptr);I<end;++I)// expected-warning {{Non-trivial type 'GoodIter' is mapped, only trivial types are guaranteed to be mapped correctly}}
for(begin=GoodIter(0);begin<end;++begin)// expected-warning {{Non-trivial type 'GoodIter' is mapped, only trivial types are guaranteed to be mapped correctly}}
for(begin=end;begin<end;++begin)// expected-warning {{Non-trivial type 'GoodIter' is mapped, only trivial types are guaranteed to be mapped correctly}}
for(GoodIterI=begin;I>=end;I=I-1)// expected-warning 2 {{Non-trivial type 'GoodIter' is mapped, only trivial types are guaranteed to be mapped correctly}}
for(ITI=begin;I<end;I+=TC<int,ST>::step()){// expected-warning 2 {{Non-trivial type 'GoodIter' is mapped, only trivial types are guaranteed to be mapped correctly}}
#pragma omp teams distribute lastprivate(s) firstprivate(s) // expected-error {{calling a private constructor of class 'S'}} expected-warning {{Non-trivial type 'S' is mapped, only trivial types are guaranteed to be mapped correctly}}