(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
graphite/
pr45297.c
       1  /* { dg-options "-Os -fgraphite-identity" } */
       2  
       3  void
       4  foo (int *p)
       5  {
       6    int *q = p + 1024;
       7    while (q != p)
       8      *--q = *--q;
       9  }