diff options
author | Liubov Dmitrieva <liubov.dmitrieva@gmail.com> | 2012-09-25 20:41:17 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2012-09-25 20:41:17 +0200 |
commit | 6d3bf1993190edc502d01e8ca42c4482b20a5b6c (patch) | |
tree | ceef4ffabe768f560a3a4d3f6b556b7b70aac37d /math/s_cexpf.c | |
parent | 203e56032f77d0b36701deaee360e9cdda35d54e (diff) | |
download | glibc-6d3bf1993190edc502d01e8ca42c4482b20a5b6c.tar.gz glibc-6d3bf1993190edc502d01e8ca42c4482b20a5b6c.tar.xz glibc-6d3bf1993190edc502d01e8ca42c4482b20a5b6c.zip |
Fix wrong ussage of sincos for subnormal arguments
Diffstat (limited to 'math/s_cexpf.c')
-rw-r--r-- | math/s_cexpf.c | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/math/s_cexpf.c b/math/s_cexpf.c index 4aa9765818..41fcea51db 100644 --- a/math/s_cexpf.c +++ b/math/s_cexpf.c @@ -39,7 +39,15 @@ __cexpf (__complex__ float x) const int t = (int) ((FLT_MAX_EXP - 1) * M_LN2); float sinix, cosix; - __sincosf (__imag__ x, &sinix, &cosix); + if (__builtin_expect (icls != FP_SUBNORMAL, 1)) + { + __sincosf (__imag__ x, &sinix, &cosix); + } + else + { + sinix = __imag__ x; + cosix = 1.0f; + } if (__real__ x > t) { @@ -95,7 +103,15 @@ __cexpf (__complex__ float x) { float sinix, cosix; - __sincosf (__imag__ x, &sinix, &cosix); + if (__builtin_expect (icls != FP_SUBNORMAL, 1)) + { + __sincosf (__imag__ x, &sinix, &cosix); + } + else + { + sinix = __imag__ x; + cosix = 1.0f; + } __real__ retval = __copysignf (value, cosix); __imag__ retval = __copysignf (value, sinix); |