summaryrefslogtreecommitdiff
path: root/math/s_cacosf.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_cacosf.c')
-rw-r--r--math/s_cacosf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/math/s_cacosf.c b/math/s_cacosf.c
index 9eaeeec53d..5f4300e050 100644
--- a/math/s_cacosf.c
+++ b/math/s_cacosf.c
@@ -1,5 +1,5 @@
/* Return cosine of complex float value.
- Copyright (C) 1997-2014 Free Software Foundation, Inc.
+ Copyright (C) 1997-2015 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@@ -34,6 +34,8 @@ __cacosf (__complex__ float x)
y = __casinf (x);
__real__ res = (float) M_PI_2 - __real__ y;
+ if (__real__ res == 0.0f)
+ __real__ res = 0.0f;
__imag__ res = -__imag__ y;
}
else