1 /* { dg-skip-if "requires untyped assembly" { ! untyped_assembly } { "-O0" } { "" } } */
2 
foo()3 int foo () {}
4 
main(a,b)5 main (a, b)
6 {
7   foo (foo (a, b), foo (b, a));
8   return 0;
9 }
10