modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/920929-1.c (about)

     1  /* { dg-skip-if "requires alloca" { ! alloca } { "-O0" } { "" } } */
     2  /* REPRODUCED:RUN:SIGNAL MACHINE:sparc OPTIONS: */
     3  f(int n)
     4  {
     5  int i;
     6  double v[n];
     7  for(i=0;i<n;i++)
     8  v[i]=0;
     9  }
    10  main()
    11  {
    12  f(100);
    13  exit(0);
    14  }