Add compile command to each testcase
[gcc-vect-testsuite.git] / vect-outer-2b.c
blobdf2e6a7b1291d4bfe57d4dd8c0dc9846d8b9e921
1 /* { dg-require-effective-target vect_float } */
2 #include <stdarg.h>
3 #include "tree-vect.h"
5 #define N 40
6 float image[2*N][N][N] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
8 __attribute__ ((noinline)) void
9 foo (){
10 int i,j,k;
12 for (k=0; k<N; k++) {
13 for (i = 0; i < N; i++) {
14 for (j = 0; j < N; j++) {
15 image[k+i][j][i] = j+i+k;
21 int main (void)
23 check_vect ();
24 int i, j, k;
26 foo ();
28 for (k=0; k<N; k++) {
29 for (i = 0; i < N; i++) {
30 for (j = 0; j < N; j++) {
31 if (image[k+i][j][i] != j+i+k)
32 abort ();
37 return 0;
40 /* { dg-final { scan-tree-dump-times "strided access in outer loop." 1 "vect" } } */
41 /* { dg-final { cleanup-tree-dump "vect" } } */