1/* PR bootstrap/6315 */
2
3/* { dg-do compile } */
4/* { dg-options "-O2 -mhard-quad-float" } */
5
6void bar (const char *, ...);
7
8void
9foo (const char *x, long double y, int z)
10{
11  if (z >= 0)
12    bar (x, z, y);
13  else
14    bar (x, y);
15}
16