(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
dwarf2/
vla1.c
       1  // PR debug/42800
       2  // { dg-options "-gdwarf-2 -dA" }
       3  // { dg-final { scan-assembler "DW_AT_upper_bound" } }
       4  // { dg-require-effective-target alloca }
       5  
       6  int
       7  f (int i)
       8  {
       9    char a[i];
      10  
      11    return a[0];
      12  }