aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.graphite/bounds.c
blob: 3d2fd7aaec889512526370fbc1739ebed03e2f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int foo(int *a, int n)
{
  int i;
  for (i = 2; i < n; i++)
    a[i] += a[i+1];
  for (i = 2; i < n; i++)
    a[i] += a[i+1];
}

/* Check that Graphite dependency checking notes the dependency.  */
/* { dg-do compile } */
/* { dg-final { scan-tree-dump-times "0 loops carried no dependency" 1 "graphite" } } */