1 /* { dg-options "-Os -fgraphite-identity" } */
2 
3 void
foo(int * p)4 foo (int *p)
5 {
6   int *q = p + 1024;
7   while (q != p)
8     *--q = *--q;
9 }
10