Add compile command to each testcase
[gcc-vect-testsuite.git] / pr38529.c
blob496aa43f39b9ce98372c7b799ec84fa64aa9fb9e
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_float } */
4 float a[4];
6 void foo()
8 int i, j;
10 for (i = 0; i < 4; ++i)
11 for (j = 0; j < 17; ++j)
12 a[i] = 0;
15 /* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 1 "vect" } } */
16 /* { dg-final { cleanup-tree-dump "vect" } } */