summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/block-0.c
blob: 627f044fc14ce57142be3e9f5eb04e5fc12f13bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* { dg-options "-O -floop-block -fdump-tree-graphite-all" } */

#define N 1000

int toto()
{
  int j;
  int i;
  int a[N];
  int b[N];

  for (i = 0; i < N; i++)
    for (j = 0; j < N; j++)
      a[j] = a[i] + 1;

  return a[0];
}

main()
{
  return toto();
}

/* { dg-final { scan-tree-dump-times "will be loop blocked" 1 "graphite"} } */ 
/* { dg-final { cleanup-tree-dump "graphite" } } */