]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(__cproj): Fix bug: NaN + i NaN returns now NaN + i NaN.
authorUlrich Drepper <drepper@redhat.com>
Tue, 19 Oct 1999 03:31:10 +0000 (03:31 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 19 Oct 1999 03:31:10 +0000 (03:31 +0000)
sysdeps/libm-ieee754/s_cproj.c

index fb50bb5a88e720e75bdd29dff3ebde321a41e3f9..f126bbe05566782a6bea84358bf541cdffda2fc8 100644 (file)
@@ -1,5 +1,5 @@
 /* Compute projection of complex double value to Riemann sphere.
-   Copyright (C) 1997 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1999 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
 
@@ -27,7 +27,9 @@ __cproj (__complex__ double x)
 {
   __complex__ double res;
 
-  if (!isfinite (__real__ x) || !isfinite (__imag__ x))
+  if (isnan (__real__ x) && isnan (__imag__ x))
+    return x;
+  else if (!isfinite (__real__ x) || !isfinite (__imag__ x))
     {
       __real__ res = INFINITY;
       __imag__ res = __copysign (0.0, __imag__ x);