blob: 9753876c2d7e207141ccc0baea28ac5727b7c280 [file] [log] [blame]
/* PR target/7370. */
/* { dg-require-stack-size "4000 + 8" } */
int g (int *x, int *y);
void f ()
{
int x, y;
char a[4000];
g (&x, &y);
x = x/y + x;
}