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

     1  /* { dg-add-options stack_size } */
     2  
     3  #ifdef STACK_SIZE
     4  # define A_SIZE (STACK_SIZE/sizeof(int))
     5  #else
     6  # define A_SIZE 16384
     7  #endif
     8  foo ()
     9  {
    10    int a[A_SIZE];
    11    bar (a);
    12  }