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