summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr26435.c
blob: 4e5e5f74d7ad172a8df611359fad351f4c6987e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-options "-O2 -ftree-loop-linear" } */
/* { dg-require-effective-target size32plus } */

int foo(int *p, int n)
{
  int i, j, k = 0;

  /* This is a reduction: there is a scalar dependence that cannot be
     removed by rewriting IVs.  This code cannot and should not be
     transformed into a perfect loop.  */
  for (i = 0; i < 2; ++i, p += n)
    for (j = 0; j < 2; ++j)
      k += p[j];

  return k;
}