1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* { dg-do compile { target "mips*-*-*" } } */ /* { dg-options "-O2 -ffast-math -mips4" } */ /* { dg-final { scan-assembler "rsqrt.d" } } */ /* { dg-final { scan-assembler "rsqrt.s" } } */ extern double sqrt(double); extern float sqrtf(float); double foo(double x) { return sqrt(1.0/x); } float bar(float x) { return sqrtf(1.0f/x); }