(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr54428.c
       1  /* PR c/54428 */
       2  /* { dg-skip-if "too many arguments in function call" { bpf-*-* } } */
       3  
       4  typedef double _Complex C;
       5  
       6  C
       7  foo (C x, C y, double z, C w)
       8  {
       9    return y - z * __builtin_cpow (x, 75) * w;
      10  }