PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-76-big-array.c
blob5825cfc446468b16eff60fa2115bb1de4872654f
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 124
7 #define OFF 4
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};
14 int ic[N+OFF] = {0, 1, 3, 5, 7, 11, 13, 17};
16 __attribute__ ((noinline))
17 int main1 (int *pib)
19 int i;
20 int ia[N+OFF];
21 for (i = OFF; i < N+OFF; i++)
23 ib[i] = ib[i%8]*(i/8);
24 ic[i] = ic[i%8]*(i/8);
25 asm volatile ("" ::: "memory");
28 for (i = OFF; i < N; i++)
30 ia[i] = pib[i - OFF];
34 /* check results: */
35 for (i = OFF; i < N; i++)
37 if (ia[i] != pib[i - OFF])
38 abort ();
41 for (i = 0; i < N; i++)
43 ia[i] = pib[i - OFF];
47 /* check results: */
48 for (i = 0; i < N; i++)
50 if (ia[i] != pib[i - OFF])
51 abort ();
54 for (i = OFF; i < N; i++)
56 ia[i] = ic[i - OFF];
60 /* check results: */
61 for (i = OFF; i < N; i++)
63 if (ia[i] != ic[i - OFF])
64 abort ();
67 return 0;
70 int main (void)
72 check_vect ();
74 main1 (&ib[OFF]);
75 return 0;
79 /* { dg-final { scan-tree-dump-times "vectorized 3 loops" 1 "vect" } } */