This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.21-279-g92f2897


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  92f2897953ab6cd9e073718cfe36611700e174c6 (commit)
      from  2959eda9272a033863c271aff62095abd01bd4e3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=92f2897953ab6cd9e073718cfe36611700e174c6

commit 92f2897953ab6cd9e073718cfe36611700e174c6
Author: Wilco Dijkstra <wdijkstr@arm.com>
Date:   Wed Apr 22 12:07:56 2015 +0000

    Use __copysign rather than copysign.

diff --git a/ChangeLog b/ChangeLog
index 26dcfc7..2c01eac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+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]
diff --git a/math/k_casinh.c b/math/k_casinh.c
index de04e84..cd089ab 100644
--- a/math/k_casinh.c
+++ b/math/k_casinh.c
@@ -199,7 +199,7 @@ __kernel_casinh (__complex__ double x, int adj)
       if (adj)
 	{
 	  double t = __real__ y;
-	  __real__ y = copysign (__imag__ y, __imag__ x);
+	  __real__ y = __copysign (__imag__ y, __imag__ x);
 	  __imag__ y = t;
 	}
 
diff --git a/sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c b/sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c
index a58a620..8293819 100644
--- a/sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c
+++ b/sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c
@@ -46,7 +46,7 @@ __nearbyint(double x)
 		double t =  w-TWO52[sx];
 		math_opt_barrier(t);
 		libc_fesetenv (&env);
-		return copysign(t, x);
+		return __copysign (t, x);
 	    }
 	} else {
 	    if(j0==0x400) return x+x;	/* inf or NaN */
diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-copysign.c b/sysdeps/ieee754/ldbl-opt/nldbl-copysign.c
index ef23bad..045f00d 100644
--- a/sysdeps/ieee754/ldbl-opt/nldbl-copysign.c
+++ b/sysdeps/ieee754/ldbl-opt/nldbl-copysign.c
@@ -4,5 +4,5 @@ double
 attribute_hidden
 copysignl (double x, double y)
 {
-  return copysign (x, y);
+  return __copysign (x, y);
 }

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                                        |    8 ++++++++
 math/k_casinh.c                                  |    2 +-
 sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c |    2 +-
 sysdeps/ieee754/ldbl-opt/nldbl-copysign.c        |    2 +-
 4 files changed, 11 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]