98f3eb1f98
2009-09-17 Alexander Monakov <amonakov@ispras.ru> gcc: * graphite-sese-to-poly.c (pdr_add_data_dimensions): Add bounds only for ARRAY_REFs. Use array_ref_{low,up}_bound to determine bounds. libgomp: * testsuite/libgomp.graphite/bounds.c: New test. From-SVN: r151802
14 lines
422 B
C
14 lines
422 B
C
int foo(int *a, int n)
|
|
{
|
|
int i;
|
|
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" } } */
|
|
/* { dg-final { cleanup-tree-dump "graphite" } } */
|
|
/* { dg-final { cleanup-tree-dump "parloops" } } */
|
|
/* { dg-final { cleanup-tree-dump "optimized" } } */
|