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