(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
graphite/
id-pr44676.c
       1  /* { dg-options "-O2 -fgraphite-identity -fprofile-generate" } */
       2  /* { dg-require-profiling "-fprofile-generate" } */
       3  
       4  int
       5  extend_options (int h, int map, int x, int y, int dx)
       6  {
       7    while (dx--)
       8      {
       9        if (x != dx && y != -x)
      10  	map++;
      11      }
      12    return map;
      13  }