summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/scop-0.c
blob: 958285f8ac60aa4184b730eed858dad272be08e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
int foo (void);
void bar (void);

int toto()
{
  /* Scop 1. */
  int i, j, k;
  int a[201][100];
  int b[100];
  int N = foo ();

  for (i = 0; i < 2*N+ 100; i++)
    for (j = 0; j < 200; j++)
      a[j][i] = a[j+1][10] + 2;

  return a[3][5] + b[1];
  /* End scop 1. */
}

/* { dg-final { scan-tree-dump-times "number of SCoPs: 1" 1 "graphite"} } */
/* { dg-final { cleanup-tree-dump "graphite" } } */