diff options
Diffstat (limited to 'math/s_csin.c')
-rw-r--r-- | math/s_csin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/s_csin.c b/math/s_csin.c index ceee25fdda..e926d7e185 100644 --- a/math/s_csin.c +++ b/math/s_csin.c @@ -42,7 +42,7 @@ __csin (__complex__ double x) const int t = (int) ((DBL_MAX_EXP - 1) * M_LN2); double sinix, cosix; - if (__glibc_likely (rcls != FP_SUBNORMAL)) + if (__glibc_likely (__real__ x > DBL_MIN)) { __sincos (__real__ x, &sinix, &cosix); } @@ -136,7 +136,7 @@ __csin (__complex__ double x) /* Real part is finite. */ double sinix, cosix; - if (__glibc_likely (rcls != FP_SUBNORMAL)) + if (__glibc_likely (__real__ x > DBL_MIN)) { __sincos (__real__ x, &sinix, &cosix); } |