(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
graphite/
pr38073.c
       1  /* { dg-options "-O3 -fgraphite-identity" } */
       2  
       3  int
       4  test_seg(int a, int b)
       5  {
       6    int i,r=1;
       7    for(i=0; i<b ;i++)
       8      r*=a;
       9    return r;
      10  }