+2015-04-22 Wilco Dijkstra <wdijkstr@arm.com>
+
+ * math/k_casinh.c (__kernel_casinh): Use __copysign.
+ * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c
+ (__nearbyint): Likewise.
+ * sysdeps/ieee754/ldbl-opt/nldbl-copysign.c
+ (copysignl): Likewise.
+
2015-04-21 Arjun Shankar <arjun.is@lostca.se>
[BZ #18287]
if (adj)
{
double t = __real__ y;
- __real__ y = copysign (__imag__ y, __imag__ x);
+ __real__ y = __copysign (__imag__ y, __imag__ x);
__imag__ y = t;
}