modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr41469.c (about)

     1  /* { dg-options "-fexceptions" } */
     2  /* { dg-skip-if "requires alloca" { ! alloca } { "-O0" } { "" } } */
     3  /* { dg-require-effective-target exceptions } */
     4  
     5  void
     6  af (void *a)
     7  {
     8  }
     9  void
    10  bf (void)
    11  {
    12    int i = 1;
    13    char v[i];
    14    af (v);
    15  }
    16