Add compile command to each testcase
[gcc-vect-testsuite.git] / vect-78-global.c
blobec6520fd8a04efa03d5f20dc7d8588066be7b462
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 ia[N];
14 int ib[N+OFF] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))) = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10, 14, 22, 26, 34};
15 int off = 8;
17 __attribute__ ((noinline))
18 int main1 (int *ib)
20 int i;
22 for (i = 0; i < N; i++)
24 ia[i] = ib[i+off];
28 /* check results: */
29 for (i = 0; i < N; i++)
31 if (ia[i] != ib[i+off])
32 abort ();
35 return 0;
38 int main (void)
40 check_vect ();
42 main1 (ib);
43 return 0;
46 /* For targets that don't support misaligned loads we version for the load.
47 (The store is aligned). */
49 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
50 /* { dg-final { scan-tree-dump-times "Vectorizing an unaligned access" 1 "vect" { xfail { vect_no_align } } } } */
51 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 0 "vect" } } */
52 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versioning." 1 "vect" { target vect_no_align } } } */
53 /* { dg-final { cleanup-tree-dump "vect" } } */