1 /* { dg-require-effective-target untyped_assembly } */
2 /* { dg-skip-if "too many arguments in function call" { bpf-*-* } } */
3 
4 int
foo(a,b,c)5 foo (a, b, c)
6 {
7   return a + b + c;
8 }
9 
10 int
bar()11 bar ()
12 {
13   int q, w, e, r, t, y;
14 
15   return foo ((int) & q, q, w, e, q, (int) &w);
16 }
17