1  /* PR bootstrap/6315 */
       2  
       3  /* { dg-do compile } */
       4  /* { dg-options "-O2 -mhard-quad-float" } */
       5  
       6  void bar (const char *, ...);
       7  
       8  void
       9  foo (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  }