summaryrefslogtreecommitdiff
path: root/sysdeps/alpha/fpu/s_floor.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-01-29 16:58:13 +0000
committerUlrich Drepper <drepper@redhat.com>1999-01-29 16:58:13 +0000
commit6eaccb759aff7e3fdd679d39aabaf773b18dfbd1 (patch)
treeba33932b592d55490b64f2c76ad367e0530ad170 /sysdeps/alpha/fpu/s_floor.c
parent21ab6fb6bc4c2eb2b3a9b533d11942b45865aca5 (diff)
1999-01-29 Richard Henderson <rth@twiddle.net> * scripts/config.sub: Recognize alpha{pca5[67],ev[67]}. * sysdeps/generic/elf/backtracesyms.c (__backtrace_symbols): Format pointer differences as longs. * sysdeps/alpha/fpu/s_floor.c, sysdeps/alpha/fpu/s_floorf.c: Copy commentary from bits/mathinclude.h. Kill unused defines. * sysdeps/alpha/atomicity.h: New file.
Diffstat (limited to 'sysdeps/alpha/fpu/s_floor.c')
-rw-r--r--sysdeps/alpha/fpu/s_floor.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/sysdeps/alpha/fpu/s_floor.c b/sysdeps/alpha/fpu/s_floor.c
index c7e14662fe..146e19b35a 100644
--- a/sysdeps/alpha/fpu/s_floor.c
+++ b/sysdeps/alpha/fpu/s_floor.c
@@ -17,18 +17,17 @@
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#ifndef __USE_EXTERN_INLINES
-#define __USE_EXTERN_INLINES
-#endif
-#define __floor __i_floor
-
#include <math.h>
-#undef __floor
+
+/* Use the -inf rounding mode conversion instructions to implement
+ floor. We note when the exponent is large enough that the value
+ must be integral, as this avoids unpleasant integer overflows. */
double
__floor (double x)
{
+ /* Check not zero since floor(-0) == -0. */
if (x != 0 && fabs (x) < 9007199254740992.0) /* 1 << DBL_MANT_DIG */
{
double __tmp1;