2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-76.c
blob8a2f7514e7ed17681532b7e4c52eac53fd56fca3
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 12
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__(16))) = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10};
15 __attribute__ ((noinline))
16 int main1 (int *pib)
18 int i;
19 int ia[N+OFF];
20 int ic[N+OFF] = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10};
22 for (i = OFF; i < N; i++)
24 ia[i] = pib[i - OFF];
28 /* check results: */
29 for (i = OFF; i < N; i++)
31 if (ia[i] != pib[i - OFF])
32 abort ();
35 for (i = 0; i < N; i++)
37 ia[i] = pib[i - OFF];
41 /* check results: */
42 for (i = 0; i < N; i++)
44 if (ia[i] != pib[i - OFF])
45 abort ();
48 for (i = OFF; i < N; i++)
50 ia[i] = ic[i - OFF];
54 /* check results: */
55 for (i = OFF; i < N; i++)
57 if (ia[i] != ic[i - OFF])
58 abort ();
61 return 0;
64 int main (void)
66 check_vect ();
68 main1 (&ib[OFF]);
69 return 0;
73 /* { dg-final { scan-tree-dump-times "vectorized 3 loops" 1 "vect" } } */
74 /* { dg-final { cleanup-tree-dump "vect" } } */