aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr54428.c
blob: d783337cfdb99af460ac0010573237a6fb68d30e (plain)
1
2
3
4
5
6
7
8
9
10
/* PR c/54428 */
/* { dg-skip-if "too many arguments in function call" { bpf-*-* } } */

typedef double _Complex C;

C
foo (C x, C y, double z, C w)
{
  return y - z * __builtin_cpow (x, 75) * w;
}