(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
20000923-1.c
       1  /* { dg-require-effective-target alloca } */
       2  const int a = 3;
       3  const int b = 50;
       4  
       5  void foo (void)
       6  {
       7    long int x[a][b];
       8    asm ("" : : "r" (x) : "memory");
       9  }