Add compile command to each testcase
[gcc-vect-testsuite.git] / vect-outer-3a.c
blob4b5107dcf4eeee80db77cbe3a063473fe74ce3cc
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+1] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
7 float out[N];
9 /* Outer-loop vectorization with misaliged accesses in the inner-loop. */
11 __attribute__ ((noinline)) void
12 foo (){
13 int i,j;
14 float diff;
16 for (i = 0; i < N; i++) {
17 diff = 0;
18 for (j = 0; j < N; j++) {
19 diff += image[j][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; i++) {
40 diff = 0;
41 for (j = 0; j < N; j++) {
42 diff += image[j][i];
44 if (out[i] != diff)
45 abort ();
48 return 0;
51 /* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 1 "vect" { xfail vect_no_align } } } */
52 /* { dg-final { scan-tree-dump-times "step doesn't divide the vector-size" 2 "vect" } } */
53 /* { dg-final { cleanup-tree-dump "vect" } } */