diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-07 21:22:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-07 21:22:27 +0000 |
commit | b6b9ee9bcb357dda75515ef04430b05d79491f09 (patch) | |
tree | db976f30e4853c4eb62136cb0b99a08a45c18a82 | |
parent | 41d4d22399119f11bbdfa5d460a7270412029eb7 (diff) | |
download | glibc-b6b9ee9bcb357dda75515ef04430b05d79491f09.tar.gz glibc-b6b9ee9bcb357dda75515ef04430b05d79491f09.tar.xz glibc-b6b9ee9bcb357dda75515ef04430b05d79491f09.zip |
Update.
2003-03-07 Ulrich Drepper <drepper@redhat.com> * sysdeps/powerpc/fpu/w_sqrt.c: Fix comment.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/powerpc/fpu/w_sqrt.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index cf2b258717..1931979d39 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-03-07 Ulrich Drepper <drepper@redhat.com> + + * sysdeps/powerpc/fpu/w_sqrt.c: Fix comment. + 2003-03-07 Roland McGrath <roland@redhat.com> * sysdeps/s390/s390-32/sysdep.h (L): Use .Lfoo instead of foo. diff --git a/sysdeps/powerpc/fpu/w_sqrt.c b/sysdeps/powerpc/fpu/w_sqrt.c index 8141f361a7..7347e61760 100644 --- a/sysdeps/powerpc/fpu/w_sqrt.c +++ b/sysdeps/powerpc/fpu/w_sqrt.c @@ -1,5 +1,5 @@ -/* Single-precision floating point square root. - Copyright (C) 1997, 2002 Free Software Foundation, Inc. +/* Double-precision floating point square root. + Copyright (C) 1997, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -79,7 +79,7 @@ __sqrt(double x) t_sqrt = __t_sqrt + (xi0 >> (52-32-8-1) & 0x3fe); sg = t_sqrt[0]; sy = t_sqrt[1]; - + /* Here we have three Newton-Rhapson iterations each of a division and a square root and the remainder of the argument reduction, all interleaved. */ |