ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gcc.target/sparc/20020416-1.c

16 lines
233 B
C

/* PR bootstrap/6315 */
/* { dg-do compile } */
/* { dg-options "-O2 -mhard-quad-float" } */
void bar (const char *, ...);
void
foo (const char *x, long double y, int z)
{
if (z >= 0)
bar (x, z, y);
else
bar (x, y);
}