aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/scop-0.c
blob: 738c3f6b88934e4a74717ebd3e0d8d1a57100da0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-require-effective-target size32plus } */
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 < 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"} } */