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
foo()8 foo ()
9 {
10   int a[A_SIZE];
11   bar (a);
12 }
13