Merged with mainline at revision 128810.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-98.c
blob0987ec885dc7b2354700fb5df8ea852c83c7a1f9
1 /* { dg-require-effective-target vect_int } */
3 #include <stdarg.h>
4 #include "tree-vect.h"
6 #define N 4
7 #define DOT4( a, b ) ( a[0]*b[0] + a[1]*b[1] + a[2]*b[2] + a[3]*b[3] )
9 __attribute__ ((noinline))
10 int main1 (int ia[][N])
12 int i, j;
13 int ib[N] = {0,3,6,9};
14 int ic[N][N];
16 for (i = 0; i < N; i++)
18 ic[0][i] = DOT4 (ia[i], ib);
21 /* check results: */
22 for (i = 0; i < N; i++)
24 if (ic[0][i] != DOT4 (ia[i], ib))
25 abort();
28 return 0;
31 int main (void)
33 int ia[N][N] = {{1,2,3,4},{2,3,5,7},{2,4,6,8},{22,43,55,77}};
35 check_vect ();
37 return main1 (ia);
40 /* Needs interleaving support. */
41 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target { vect_interleave && vect_extract_even_odd } } } } */
42 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 0 "vect" { xfail { vect_interleave && vect_extract_even_odd } } } } */
43 /* { dg-final { cleanup-tree-dump "vect" } } */