rt_gccstream/gcc/testsuite/gcc.target/i386/pr17390.c

10 lines
218 B
C

/* { dg-do compile } */
/* { dg-options "-O2 -ffast-math -mfpmath=387" } */
double sgn (double __x)
{
return __x == 0.0 ? 0.0 : (__x > 0.0 ? 1.0 : -1.0);
}
/* { dg-final { scan-assembler-times "fcom|ftst" 1 } } */