Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-75-big-array.c
blob8844e15f268d5e93f58e9d677ca325b41906ece7
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 120
7 #define OFF 8
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};
15 volatile int y = 0;
17 __attribute__ ((noinline))
18 int main1 (int *ib)
20 int i;
21 int ia[N];
23 for (i = OFF; i < N+OFF; i++)
25 ib[i] = ib[i%OFF]*(i/OFF);
26 if (y)
27 abort ();
29 for (i = 0; i < N; i++)
31 ia[i] = ib[i+OFF];
35 /* check results: */
36 for (i = 0; i < N; i++)
38 if (ia[i] != ib[i+OFF])
39 abort ();
42 return 0;
45 int main (void)
47 check_vect ();
49 main1 (ib);
50 return 0;
54 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
55 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versioning" 1 "vect" { target { vect_no_align && { ! vect_hw_misalign } } } } } */
56 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 1 "vect" { xfail { vect_no_align && { ! vect_hw_misalign } } } } } */