summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/vect-outer-4a.c
blob: 8fd1a03db143a645ab6db2aeb7a2839ea0570186 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* { dg-do compile } */

#define N 40
#define M 128
signed short in[N+M];
signed short coeff[M];
signed short out[N];

/* Outer-loop vectorization.
   Currently not vectorized because of multiple-data-types in the inner-loop.  */

void
foo (){
  int i,j;
  int diff;

  for (i = 0; i < N; i++) {
    diff = 0;
    for (j = 0; j < M; j+=8) {
      diff += in[j+i]*coeff[j]; 
    }
    out[i]=diff;
  }
}

/* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 1 "vect" { xfail *-*-* } } } */
/* FORNOW. not vectorized until we support 0-stride acceses like coeff[j]. should be:
   { scan-tree-dump-not "multiple types in nested loop." "vect" { xfail *-*-* } } } */

/* { dg-final { scan-tree-dump-times "zero step in outer loop." 1  "vect" } } */
/* { dg-final { cleanup-tree-dump "vect" } } */