view libgomp/testsuite/libgomp.graphite/bounds.c @ 55:77e2b8dfacca gcc-4.4.5

update it from 4.4.3 to 4.5.0
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Fri, 12 Feb 2010 23:39:51 +0900
parents
children 04ced10e8804
line wrap: on
line source

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