]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sysdeps/alpha/fpu/e_sqrt.c: Disable custom versions of sqrt.
authorRichard Henderson <rth@redhat.com>
Sat, 2 May 1998 00:13:55 +0000 (00:13 +0000)
committerRichard Henderson <rth@redhat.com>
Sat, 2 May 1998 00:13:55 +0000 (00:13 +0000)
sysdeps/alpha/fpu/e_sqrt.c

index 56c370f97b36f344a99eadf86c982697195eeabd..cb3ec9680e4d2faaa57694f071f65c4f86c50b13 100644 (file)
@@ -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>