(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr83487.c
       1  /* PR middle-end/83487 */
       2  /* { dg-skip-if "too many arguments in function call" { bpf-*-* } } */
       3  
       4  struct __attribute__ ((aligned)) A {};
       5  struct A a;
       6  void bar (int, int, int, int, int, int, int, struct A);
       7  
       8  void
       9  foo (void)
      10  {
      11    bar (0, 1, 2, 3, 4, 5, 6, a);
      12  }