Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-outer-3b.c
bloba0ff0906ce2f6eacc580531ed885d2d4bb5b7943
1 /* { dg-require-effective-target vect_float } */
2 #include <stdarg.h>
3 #include "tree-vect.h"
5 #define N 40
6 float image[N][N] __attribute__ ((__aligned__(16)));
7 float out[N];
9 /* Outer-loop vectorization with non-consecutive access. Not vectorized yet. */
11 __attribute__ ((noinline)) void
12 foo (){
13 int i,j;
14 float diff;
16 for (i = 0; i < N/2; i++) {
17 diff = 0;
18 for (j = 0; j < N; j++) {
19 diff += image[j][2*i];
21 out[i]=diff;
25 int main (void)
27 check_vect ();
28 int i, j;
29 float diff;
31 for (i = 0; i < N; i++) {
32 for (j = 0; j < N; j++) {
33 image[i][j]=i+j;
37 foo ();
39 for (i = 0; i < N/2; i++) {
40 diff = 0;
41 for (j = 0; j < N; j++) {
42 diff += image[j][2*i];
44 if (out[i] != diff)
45 abort ();
48 return 0;
51 /* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 1 "vect" { xfail *-*-* } } } */
52 /* { dg-final { scan-tree-dump-times "strided access in outer loop" 2 "vect" } } */
53 /* { dg-final { cleanup-tree-dump "vect" } } */