cfgexpand: Expand comment on when non-var clobbers can show up
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-iv-5.c
blobc3c4735f03432f9be07ed2fb14c94234ee8f4e52
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 16
8 __attribute__ ((noinline)) int main1 ()
9 {
10 float arr[N];
11 float f = 1.0;
12 int i;
14 /* Vectorization of fp induction. */
16 for (i=0; i<N; i++)
18 arr[i] = f;
19 f += 2.0;
22 /* check results: */
23 #pragma GCC novector
24 for (i = 0; i < N; i++)
26 if (arr[i] != 1.0 + 2.0*i)
27 abort ();
30 return 0;
33 int main (void)
35 check_vect ();
37 return main1 ();
40 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail {! arm_neon_ok } } } } */