PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-iv-5.c
blob2015385fbf5fac1349124dd35d57b26c49af6346
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 {! arm_neon_ok } } } } */