1 /* { dg-require-effective-target vect_int } */
2
3 #include <stdarg.h>
4 #include "tree-vect.h"
5
6 #define N 8
7
8 int b[N] = {0,3,6,9,12,15,18,21};
9 int a[N];
10
11 __attribute__ ((noinline))
12 int main1 ()
13 {
14 int i;
15
16 for (i = 0; i < N; i++)
17 {
18 a[i] = b[i];
19 }
20
21 /* check results: */
22 for (i = 0; i < N; i++)
23 {
24 if (a[i] != b[i])
25 abort ();
26 }
27
28 return 0;
29 }
30
31 int main (void)
32 {
33 check_vect ();
34
35 return main1 ();
36 }
37
38 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */