Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / costmodel / i386 / costmodel-vect-31.c
blobc61517aab42884329c26c9abf0242779b6bbb004
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 struct s tmp;
23 int main1 ()
25 int i;
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 "vectorization not profitable" 1 "vect" } }
91 /* { dg-final { scan-tree-dump-times "vectorized 3 loops" 1 "vect" } } */
92 /* { dg-final { cleanup-tree-dump "vect" } } */