Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / gcc.dg / vect / vect-outer-2d.c
blob3e19d47b315930d959ae9f58f06c0713030b21e6
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][N+1] __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 < i+1; j++) {
15 image[k][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 < i+1; j++) {
31 if (image[k][j][i] != j+i+k)
32 abort ();
37 return 0;
40 /* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 0 "vect" } } */
41 /* { dg-final { cleanup-tree-dump "vect" } } */