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.14-381-gb171c13


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  b171c137687dd4328f756d141d17f30bae750079 (commit)
      from  97c066e65af5d0a52d794d7fd81d7242ee46c49c (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://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=b171c137687dd4328f756d141d17f30bae750079

commit b171c137687dd4328f756d141d17f30bae750079
Author: Ulrich Drepper <drepper@gmail.com>
Date:   Mon Oct 17 10:37:00 2011 -0400

    Fix last x86-64 mathinline change
    
    Use correct function names.

diff --git a/ChangeLog b/ChangeLog
index 755ca1d..289475c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2011-10-17  Ulrich Drepper  <drepper@gmail.com>
 
+	* sysdeps/x86_64/fpu/bits/mathinline.h (floor): Use correct function
+	name.
+	(floorf): Likewise.
+
 	* nscd/netgroupcache.c (addgetnetgrentX): Fix #ifdef nesting.
 
 2011-10-17  Andreas Schwab  <schwab@redhat.com>
diff --git a/sysdeps/x86_64/fpu/bits/mathinline.h b/sysdeps/x86_64/fpu/bits/mathinline.h
index c3e03e8..210bef8 100644
--- a/sysdeps/x86_64/fpu/bits/mathinline.h
+++ b/sysdeps/x86_64/fpu/bits/mathinline.h
@@ -187,7 +187,7 @@ __END_NAMESPACE_C99
 __BEGIN_NAMESPACE_STD
 /* Largest integer not greater than X.  */
 __MATH_INLINE double
-__NTH (ceil (double __x))
+__NTH (floor (double __x))
 {
   double __res;
   __asm ("roundsd $1, %1, %0" : "=x" (__res) : "x" (__x));
@@ -197,7 +197,7 @@ __END_NAMESPACE_STD
 
 __BEGIN_NAMESPACE_C99
 __MATH_INLINE float
-__NTH (ceilf (float __x))
+__NTH (floorf (float __x))
 {
   float __res;
   __asm ("roundss $1, %1, %0" : "=x" (__res) : "x" (__x));

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

Summary of changes:
 ChangeLog                            |    4 ++++
 sysdeps/x86_64/fpu/bits/mathinline.h |    4 ++--
 2 files changed, 6 insertions(+), 2 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]