Merged with mainline at revision 128810.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-105.c
blobeb21b160cffcb57ad562668623609ed78e6599f5
1 /* { dg-require-effective-target vect_int } */
3 #include <stdlib.h>
4 #include <stdarg.h>
5 #include "tree-vect.h"
7 #define N 4
9 struct extraction
11 int a[N][N];
12 int b[N][N];
15 static int a[N][N] = {{1,2,3,11},{4,5,6,12},{7,8,9,13},{34,45,67,83}};
16 static int b[N][N] = {{17,28,15,23},{0,2,3,24},{4,31,82,25},{29,31,432,256}};
17 static int c[N][N] = {{1,2,3,11},{4,9,13,34},{45,67,83,13},{34,45,67,83}};
19 __attribute__ ((noinline))
20 int main1 (int x) {
21 int i,j;
22 struct extraction *p;
23 p = (struct extraction *) malloc (sizeof (struct extraction));
25 for (i = 0; i < N; i++)
27 for (j = 0; j < N; j++)
29 p->a[i][j] = a[i][j];
30 p->b[i][j] = b[i][j];
31 if (x == 135)
32 abort (); /* to avoid vectorization */
36 /* Vectorizable: distance > number of iterations. */
37 for (i = 1; i < N; i++)
39 for (j = 0; j < N; j++)
41 *((int *)p + x + i + j) = *((int *)p + x + i + j + 5);
45 /* check results: */
46 for (i = 0; i < N; i++)
48 for (j = 0; j < N; j++)
50 if (p->a[i][j] != c[i][j])
51 abort();
54 return 0;
57 int main (void)
59 check_vect ();
61 return main1 (N);
64 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
65 /* { dg-final { scan-tree-dump-times "Alignment of access forced using versioning" 2 "vect" { target vect_no_align } } } */
66 /* { dg-final { scan-tree-dump-times "possible dependence between data-refs" 0 "vect" } } */
67 /* { dg-final { cleanup-tree-dump "vect" } } */