aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20021015-1.c
blob: 9753876c2d7e207141ccc0baea28ac5727b7c280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 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;
}