Add compile command to each testcase
[gcc-vect-testsuite.git] / vect-31.c
blob8719fc9d27ef9cae46d0ee70c64ef8ac40566b54
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 32
8 struct t{
9 int k[N];
10 int l;
13 struct s{
14 char a; /* aligned */
15 char b[N-1]; /* unaligned (offset 1B) */
16 char c[N]; /* aligned (offset NB) */
17 struct t d; /* aligned (offset 2NB) */
18 struct t e; /* unaligned (offset 2N+4N+4 B) */
21 __attribute__ ((noinline))
22 int main1 ()
24 int i;
25 struct s tmp;
27 /* unaligned */
28 for (i = 0; i < N/2; i++)
30 tmp.b[i] = 5;
33 /* check results: */
34 for (i = 0; i <N/2; i++)
36 if (tmp.b[i] != 5)
37 abort ();
40 /* aligned */
41 for (i = 0; i < N/2; i++)
43 tmp.c[i] = 6;
46 /* check results: */
47 for (i = 0; i <N/2; i++)
49 if (tmp.c[i] != 6)
50 abort ();
53 /* aligned */
54 for (i = 0; i < N/2; i++)
56 tmp.d.k[i] = 7;
59 /* check results: */
60 for (i = 0; i <N/2; i++)
62 if (tmp.d.k[i] != 7)
63 abort ();
66 /* unaligned */
67 for (i = 0; i < N/2; i++)
69 tmp.e.k[i] = 8;
72 /* check results: */
73 for (i = 0; i <N/2; i++)
75 if (tmp.e.k[i] != 8)
76 abort ();
79 return 0;
82 int main (void)
84 check_vect ();
86 return main1 ();
89 /* { dg-final { scan-tree-dump-times "vectorized 4 loops" 1 "vect" } } */
90 /* { dg-final { cleanup-tree-dump "vect" } } */