summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_copysignf.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2003-07-23 04:23:36 +0000
committerpeter <peter@FreeBSD.org>2003-07-23 04:23:36 +0000
commit07a2b34dd7719c79be09239a8a2b5d2e16ccb8c2 (patch)
tree6b396620b7053f77034f03f096bad5f767d732e1 /lib/msun/src/s_copysignf.c
parent6635082314c6f72e2650578374dc2a73d2788d6e (diff)
downloadFreeBSD-src-07a2b34dd7719c79be09239a8a2b5d2e16ccb8c2.zip
FreeBSD-src-07a2b34dd7719c79be09239a8a2b5d2e16ccb8c2.tar.gz
Now that we do not need to do runtime detection for the broken default
fp emulator, stop doing the runtime selection of hardware or emulated floating point operations on i386. Note that I have not suppressed the duplicate compiles yet. While here, fix the alpha. It has provided specific copysign/copysignf functions since the beginning of time, but they have never been used.
Diffstat (limited to 'lib/msun/src/s_copysignf.c')
-rw-r--r--lib/msun/src/s_copysignf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/s_copysignf.c b/lib/msun/src/s_copysignf.c
index df5304f..2bcc055 100644
--- a/lib/msun/src/s_copysignf.c
+++ b/lib/msun/src/s_copysignf.c
@@ -27,7 +27,7 @@ static char rcsid[] = "$FreeBSD$";
#include "math_private.h"
float
-copysignf(float x, float y)
+__generic_copysignf(float x, float y)
{
u_int32_t ix,iy;
GET_FLOAT_WORD(ix,x);
OpenPOWER on IntegriCloud