1 /* { dg-do compile } */
2 /* { dg-options "-O -fstack-check=generic" } */
3 
main()4 int main ()
5 {
6   int x[8];
7   if (x[0] != 4)
8     __builtin_abort ();
9   return 0;
10 }
11