aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/pass.c
blob: 6b663828aee0fb897e961eeced4529a8356c3396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
int
foo (a, b, c)
{
  return a + b + c;
}

int
bar ()
{
  int q, w, e, r, t, y;

  return foo ((int) & q, q, w, e, q, (int) &w);
}