Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-align-2.c
blobdad9d59eb21edb7d953864575c22214760c37084
1 /* { dg-require-effective-target vect_int } */
2 /* { dg-do run } */
4 #include <stdlib.h>
5 #include <stdarg.h>
6 #include "tree-vect.h"
8 /* Compile time unknown misalignment. Cannot use loop peeling to align
9 the store. */
11 #define N 17
13 struct foo {
14 char x0;
15 int y[N][N];
16 } __attribute__ ((packed));
18 struct foo f2;
19 int z[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
21 __attribute__ ((noinline))
22 void fbar(struct foo *fp)
24 int i,j;
25 for (i=0; i<N; i++)
26 for (j=0; j<N; j++)
27 f2.y[i][j] = z[i];
29 for (i=0; i<N; i++)
30 for (j=0; j<N; j++)
31 if (f2.y[i][j] != z[i])
32 abort ();
35 int main (void)
37 struct foo *fp = (struct foo *) malloc (2*sizeof (struct foo));
39 fbar(fp);
40 return 0;
44 /* { dg-final { scan-tree-dump-times "Alignment of access forced using peeling" 0 "vect" } } */
45 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versioning" 1 "vect" } } */
46 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
47 /* { dg-final { cleanup-tree-dump "vect" } } */