(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
graphite/
id-6.c
       1  #define N 10000
       2  void foo (int);
       3  int test ()
       4  {
       5    int a[N + 8];
       6    unsigned i;
       7  
       8    for (i = 0; i < N; i++)
       9      {
      10        a[i] = i + 12;
      11  
      12        if (i == 40)
      13  	a[i] = i;
      14        else
      15  	a[i] = i+1;
      16  
      17  
      18        a[i] = i + 12;
      19        a[i] = a[i+1];
      20        a[i] += a[i+2];
      21        a[i] += a[i+3];
      22        a[i] += a[i+4];
      23        a[i] += a[i+5];
      24        a[i] += a[i+6];
      25  
      26      }
      27  
      28    return a[20];
      29  }