blob: faa653a57792054f2305e58a2857ceef00f519cf [file] [log] [blame]
/* { dg-options "-Os -fgraphite-identity" } */
void
foo (int *p)
{
int *q = p + 1024;
while (q != p)
*--q = *--q;
}