2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-104.c
blob5ea2f801a2857116925185c22224392b53c45b24
1 /* { dg-require-effective-target vect_int } */
3 #include <stdlib.h>
4 #include <stdarg.h>
5 #include "tree-vect.h"
7 #define N 3
9 struct extraction
11 int a[N][N];
12 int b[N][N];
15 static int a[N][N] = {{1,2,3},{4,5,6},{7,8,9}};
16 static int b[N][N] = {{17,24,7},{0,2,3},{4,31,82}};
17 static int c[N][N] = {{1,2,3},{4,5,5},{5,5,5}};
18 volatile int foo;
20 __attribute__ ((noinline))
21 int main1 (int x) {
22 int i,j;
23 struct extraction *p;
24 p = (struct extraction *) malloc (sizeof (struct extraction));
26 for (i = 0; i < N; i++)
28 for (j = 0; j < N; j++)
30 p->a[i][j] = a[i][j];
31 p->b[i][j] = b[i][j];
32 if (foo == 135)
33 abort (); /* to avoid vectorization */
37 /* Not vectorizable: distance = 1. */
38 for (i = 1; i < N; i++)
40 for (j = 0; j < N; j++)
42 *((int *)p + x + i + j + 1) = *((int *)p + x + i + j);
46 /* check results: */
47 for (i = 0; i < N; i++)
49 for (j = 0; j < N; j++)
51 if (p->a[i][j] != c[i][j])
52 abort();
55 return 0;
58 int main (void)
60 check_vect ();
62 foo = 0;
63 return main1 (N);
66 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 0 "vect" } } */
67 /* { dg-final { scan-tree-dump-times "possible dependence between data-refs" 1 "vect" } } */
68 /* { dg-final { cleanup-tree-dump "vect" } } */