1 /* { dg-require-effective-target size32plus } */
13 static int __attribute__((noinline))
19 /* This loop nest should be blocked. */
20 for (j = 1; j < N; j++)
21 for (i = 0; i < N; i++)
22 a[i][j] = a[i][j-1] + b[i][j];
24 for (i = 0; i < N; i++)
37 for (i = 0; i < N; i++)
38 for (j = 0; j < N; j++)
47 fprintf (stderr, "res = %d \n", res);
56 /* { dg-final { scan-tree-dump-times "will be loop blocked" 1 "graphite" } } */
57 /* { dg-final { cleanup-tree-dump "graphite" } } */