summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr45297.c
blob: faa653a57792054f2305e58a2857ceef00f519cf (plain)
1
2
3
4
5
6
7
8
9
/* { dg-options "-Os -fgraphite-identity" } */

void
foo (int *p)
{
  int *q = p + 1024;
  while (q != p)
    *--q = *--q;
}