1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* The automatically chosen stack guard value caused an ICE in that case. */ /* { dg-do compile } */ /* { dg-options "-O2 -mstack-size=4096" } */ extern void bar (char *); void foo () { char a[2500]; bar (a); } /* { dg-warning "more than half" } */