(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
graphite/
pr99085.c
       1  /* PR target/99085 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O2 -fgraphite-identity -fsel-sched-pipelining -fselective-scheduling2" } */
       4  /* { dg-require-effective-target alloca } */
       5  
       6  void
       7  foo (int m, int n, int o, int i)
       8  {
       9    long double a2[m];
      10    int c2[n][o];
      11    int j, k;
      12  
      13    while (i < m)
      14      a2[i++] = 13.132L;
      15  
      16    for (j = 0; j < n; j++)
      17      for (k = 0; k < o; k++)
      18        c2[j][k] = 1;
      19  
      20    __builtin_abort ();
      21  }