diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-10-08 10:18:26 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-10-08 10:18:26 -0400 |
commit | 7edb55ce06ab1fa716a062cd1cb6682585bb449d (patch) | |
tree | 3fed82e7c3f86ac57f3e9d6f314044b7dbdb8d03 /math/s_ccosf.c | |
parent | 187da0aedcd9d0a2fb34477bef41549681ba1273 (diff) | |
download | glibc-7edb55ce06ab1fa716a062cd1cb6682585bb449d.tar.gz glibc-7edb55ce06ab1fa716a062cd1cb6682585bb449d.tar.xz glibc-7edb55ce06ab1fa716a062cd1cb6682585bb449d.zip |
Optimize use of isnan, isinf, finite
Diffstat (limited to 'math/s_ccosf.c')
-rw-r--r-- | math/s_ccosf.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/math/s_ccosf.c b/math/s_ccosf.c index 4b154deac5..f0e9c2ac9e 100644 --- a/math/s_ccosf.c +++ b/math/s_ccosf.c @@ -1,5 +1,5 @@ /* Return cosine of complex float value. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -21,6 +21,7 @@ #include <complex.h> #include <fenv.h> #include <math.h> +#include <math_private.h> __complex__ float @@ -36,17 +37,17 @@ __ccosf (__complex__ float x) __imag__ res = 0.0; #ifdef FE_INVALID - if (__isinff (__real__ x)) + if (__isinf_nsf (__real__ x)) feraiseexcept (FE_INVALID); #endif } - else if (__isinff (__imag__ x)) + else if (__isinf_nsf (__imag__ x)) { __real__ res = HUGE_VALF; __imag__ res = __nanf (""); #ifdef FE_INVALID - if (__isinff (__real__ x)) + if (__isinf_nsf (__real__ x)) feraiseexcept (FE_INVALID); #endif } |