Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / simd-clones-6.c
blob8818594bfac22320fe707e9fc752143631f6ea1e
1 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
2 /* { dg-options "-fopenmp" } */
4 /* Test that array subscripts are properly adjusted. */
6 int array[1000];
7 #pragma omp declare simd notinbranch simdlen(4)
8 void foo (int i)
10 array[i] = 555;