1 /* PR target/7370.  */
2 /* { dg-require-stack-size "4000 + 8" } */
3 
4 int g (int *x, int *y);
5 
f()6 void f ()
7 {
8   int x, y;
9   char a[4000];
10 
11   g (&x, &y);
12   x = x/y + x;
13 }
14