Alexander von Gluck IV 3d544ab266 import gcc 7.3.0
2018-03-19 15:34:23 -05:00

13 lines
311 B
C

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" } } */