1 /* { dg-require-effective-target vect_int } */
9 /* Check handling of accesses for which the "initial condition" -
10 the expression that represents the first location accessed - is
11 more involved than just an ssa_name. */
13 int ib
[N
+OFF
] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__
))) = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10};
14 int ic
[N
+OFF
] = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10};
16 __attribute__ ((noinline
))
22 for (i
= OFF
; i
< N
; i
++)
29 for (i
= OFF
; i
< N
; i
++)
31 if (ia
[i
] != pib
[i
- OFF
])
35 for (i
= 0; i
< N
; i
++)
42 for (i
= 0; i
< N
; i
++)
44 if (ia
[i
] != pib
[i
- OFF
])
48 for (i
= OFF
; i
< N
; i
++)
55 for (i
= OFF
; i
< N
; i
++)
57 if (ia
[i
] != ic
[i
- OFF
])
73 /* { dg-final { scan-tree-dump-times "vectorized 3 loops" 1 "vect" } } */
74 /* { dg-final { cleanup-tree-dump "vect" } } */