]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/s_cacos_template.c
ia64: Regenerate ulps
[thirdparty/glibc.git] / math / s_cacos_template.c
index 8c014ecf291e4eff56fba9406e7173e8aea5313b..719b986d28347efd6f02585b8aaf82e7fd2c7427 100644 (file)
@@ -1,5 +1,5 @@
 /* Return cosine of a complex type.
-   Copyright (C) 1997-2021 Free Software Foundation, Inc.
+   Copyright (C) 1997-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -32,7 +32,7 @@ M_DECL_FUNC (__cacos) (CFLOAT x)
     {
       y = M_SUF (__casin) (x);
 
-      __real__ res = (FLOAT) M_MLIT (M_PI_2) - __real__ y;
+      __real__ res = M_MLIT (M_PI_2) - __real__ y;
       if (__real__ res == 0)
        __real__ res = 0;
       __imag__ res = -__imag__ y;