2
0
mirror of git://sourceware.org/git/glibc.git synced 2025-04-24 14:41:06 +08:00

* sysdeps/alpha/fpu/e_sqrt.c: Disable custom versions of sqrt.

This commit is contained in:
Richard Henderson 1998-05-02 00:13:55 +00:00
parent 7b9de31e26
commit 8d307a99a6

@ -22,7 +22,9 @@
* We have three versions, depending on how exact we need the results.
*/
#if defined(_IEEE_FP) && defined(_IEEE_FP_INEXACT)
/* Alternative versions are disabled because they currently don't work
properly with and near DBL_MIN. */
#if 1 || defined(_IEEE_FP) && defined(_IEEE_FP_INEXACT)
/* Most demanding: go to the original source. */
#include <libm-ieee754/e_sqrt.c>