URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.target/] [mips/] [rsqrt-3.c] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-mips-options "-O2 -mips4 -mhard-float" } */ /* { dg-final { scan-assembler-not "rsqrt.d" } } */ /* { dg-final { scan-assembler-not "rsqrt.s" } } */ extern double sqrt(double); extern float sqrtf(float); double foo(double x) { return 1.0/sqrt(x); } double bar(double x) { return sqrt(1.0/x); } float foof(float x) { return 1.0f/sqrtf(x); } float barf(float x) { return sqrtf(1.0f/x); }
Go to most recent revision | Compare with Previous | Blame | View Log