aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20021015-1.c
blob: 789b8a8b176fa929c8c5ae42193c23e981568fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR target/7370.  */

int g (int *x, int *y);

void f ()
{
  int x, y;
  char a[4000];

  g (&x, &y);
  x = x/y + x;
}