Merged with mainline at revision 128810.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / costmodel / spu / costmodel-vect-76a.c
blob41fe3aebf90a37f9d3db09a47d89bdf9b8ca6a90
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "../../tree-vect.h"
6 #define N 8
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 int main1 (int *pib)
17 int i;
18 int ia[N+OFF];
19 int ic[N+OFF] = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10};
21 for (i = OFF; i < N; i++)
23 ia[i] = pib[i - OFF];
27 /* check results: */
28 for (i = OFF; i < N; i++)
30 if (ia[i] != pib[i - OFF])
31 abort ();
34 return 0;
37 int main (void)
39 check_vect ();
41 main1 (&ib[OFF]);
42 return 0;
46 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
47 /* { dg-final { cleanup-tree-dump "vect" } } */