Add runtime tests for interchange and blocking.
[official-gcc/constexpr.git] / gcc / testsuite / gcc.dg / graphite / interchange-4.c
blob5d3c7b186f6baa61608d1b32bb4d1189a77d169d
1 /* { dg-require-effective-target size32plus } */
3 /* Formerly known as ltrans-4.c */
5 #define DEBUG 0
6 #if DEBUG
7 #include <stdio.h>
8 #endif
10 double u[1782225];
12 static int __attribute__((noinline))
13 foo (int N, int *res)
15 int i, j;
16 double sum = 0;
17 for (i = 0; i < N; i++)
18 for (j = 0; j < N; j++)
19 sum = sum + u[i + 1335 * j];
21 for (i = 0; i < N; i++)
22 u[1336 * i] *= 2;
24 *res = sum + N + u[1336 * 2] + u[1336];
27 int
28 main (void)
30 int i, j, res;
32 for (i = 0; i < 1782225; i++)
33 u[i] = 2;
35 foo (1335, &res);
37 #if DEBUG
38 fprintf (stderr, "res = %d \n", res);
39 #endif
41 return res != 3565793;
44 /* { dg-final { scan-tree-dump-times "will be interchanged" 1 "graphite" } } */
45 /* { dg-final { cleanup-tree-dump "graphite" } } */