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; }