Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / gcc.dg / vect / vect-75-big-array.c
blob1c70cc2c5186006c48cf560e4be2e0a4513bdbbb
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 } } } */
56 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 1 "vect" { xfail vect_no_align } } } */
57 /* { dg-final { cleanup-tree-dump "vect" } } */