// 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 teams distribute simd
// 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 teams distribute simd
for(ii=0;ii<10;ii=ii+ii)
c[ii]=a[ii];
#pragma omp target teams distribute simd
// 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 teams distribute simd
for(ii=0;ii<10;ii=ii+(int)1.1f)
c[ii]=a[ii];
#pragma omp target teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd
// 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 teams distribute simd firstprivate(ii) // expected-note {{defined as firstprivate}}
// expected-error@+1 {{loop iteration variable in the associated loop of 'omp target teams distribute simd' directive may not be firstprivate, predetermined as linear}}
for(ii=0;ii<10;ii++)
c[ii]=a[ii];
#pragma omp target teams distribute simd private(ii) // expected-note {{defined as private}}
// expected-error@+1 {{loop iteration variable in the associated loop of 'omp target teams distribute simd' directive may not be private, predetermined as linear}}
for(ii=0;ii<10;ii++)
c[ii]=a[ii];
#pragma omp target teams distribute simd lastprivate(ii) // expected-note {{defined as lastprivate}}
// expected-error@+1 {{loop iteration variable in the associated loop of 'omp target teams distribute simd' directive may not be lastprivate, predetermined as linear}}
for(ii=0;ii<10;ii++)
c[ii]=a[ii];
#pragma omp target teams distribute simd
// expected-error@+1 {{loop iteration variable in the associated loop of 'omp target teams distribute simd' directive may not be threadprivate or thread local, predetermined as linear}}
for(sii=0;sii<10;sii++)
c[sii]=a[sii];
{
#pragma omp target teams distribute simd collapse(2)
for(ii=0;ii<10;ii+=1)
for(globalii=0;globalii<10;globalii+=1)
c[globalii]+=a[globalii]+ii;
}
#pragma omp target teams distribute simd
// expected-error@+1 {{statement after '#pragma omp target teams distribute simd' must be a for loop}}
for(auto&item:a){
item=item+1;
}
#pragma omp target teams distribute simd
// 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 teams distribute simd
for(int(*p)[4]=lb;p<lb+8;++p){
}
#pragma omp target teams distribute simd
// expected-warning@+1 {{initialization clause of OpenMP for loop is not in canonical form ('var = init' or 'T var = init')}}