URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.target/] [i386/] [recip-sqrtf.c] - Rev 318
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -ffast-math -msse -mfpmath=sse -mrecip" } */ /* { dg-require-effective-target sse } */ extern float sqrtf (float); float t1(float a, float b) { return a/sqrtf(b); } float t2(float a, float b) { return sqrtf(a/b); } float t3(float a) { return sqrtf(a); } /* { dg-final { scan-assembler-times "rsqrtss" 3 } } */