blob: 59660e35bd532fb496e39f135ef84d1b8bab1bb4 [file] [log] [blame]
/* { dg-do compile { target { { powerpc*-*-* } && { ! powerpc*-apple-darwin* } } } } */
/* { dg-require-effective-target powerpc_fprs } */
/* { dg-options "-O2 -mrecip -ffast-math -mcpu=power6" } */
/* { dg-final { scan-assembler-times "frsqrte" 2 } } */
/* { dg-final { scan-assembler-times "fmsub" 2 } } */
/* { dg-final { scan-assembler-times "fmul" 6 } } */
/* { dg-final { scan-assembler-times "fnmsub" 3 } } */
double
rsqrt_d (double a)
{
return 1.0 / __builtin_sqrt (a);
}
float
rsqrt_f (float a)
{
return 1.0f / __builtin_sqrtf (a);
}