aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/call.c
blob: c8106038371cd17375a27d8808c9a56f17ade5e0 (plain)
1
2
3
4
5
6
7
int foo () {}

main (a, b)
{
  foo (foo (a, b), foo (b, a));
  return 0;
}