Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / gomp / simd-clones-7.c
blobef6fa113c1ab03981c17079e8b60a4ebdde726d8
1 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
2 /* { dg-options "-fopenmp -w" } */
4 int array[1000];
6 #pragma omp declare simd notinbranch simdlen(4)
7 void foo (int *a, int b)
9 a[b] = 555;
12 #pragma omp declare simd notinbranch simdlen(4)
13 void bar (int *a)
15 *a = 555;