Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-iv-5.c
blob1766ae6a33a8e155d0d79576d1c46bf80dde7b1f
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 for (i = 0; i < N; i++)
25 if (arr[i] != 1.0 + 2.0*i)
26 abort ();
29 return 0;
32 int main (void)
34 check_vect ();
36 return main1 ();
39 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { xfail *-*-* } } } */
40 /* { dg-final { cleanup-tree-dump "vect" } } */