Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / vect / vect-75.c
blobe76e18b28b9502d3cb18e5e7862caffbbd00236b
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 8
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__(16))) = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10, 14, 22, 26, 34};
15 int main1 (int *ib)
17 int i;
18 int ia[N];
20 for (i = 0; i < N; i++)
22 ia[i] = ib[i+OFF];
26 /* check results: */
27 for (i = 0; i < N; i++)
29 if (ia[i] != ib[i+OFF])
30 abort ();
33 return 0;
36 int main (void)
38 check_vect ();
40 main1 (ib);
41 return 0;
45 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
46 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 1 "vect" { xfail vect_no_align } } } */
47 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versioning." 1 "vect" { target vect_no_align } } } */
48 /* { dg-final { cleanup-tree-dump "vect" } } */