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.17-483-g0d1029d


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  0d1029de128ad2afd4a7b13a0805aea8fdb82e37 (commit)
      from  c2d94018c6963b63e95e4666feac976a97816972 (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=0d1029de128ad2afd4a7b13a0805aea8fdb82e37

commit 0d1029de128ad2afd4a7b13a0805aea8fdb82e37
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
Date:   Fri Mar 29 16:53:05 2013 +0530

    Remove usage of ONE macro
    
    I missed this instance, which caused a build failure in powerpc.

diff --git a/ChangeLog b/ChangeLog
index 59797b9..8f3ba6f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2013-03-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
+	* sysdeps/powerpc/power4/fpu/mpa-arch.h (INTEGER_OF): Replace
+	ONE with its value.
+
 	* sysdeps/ieee754/dbl-64/mpa.h (ONE, MONE): Remove defines.
 	(__pow_mp): Replace ONE and MONE with their values.
 	* sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
diff --git a/sysdeps/powerpc/power4/fpu/mpa-arch.h b/sysdeps/powerpc/power4/fpu/mpa-arch.h
index 9007c9d..43175bb 100644
--- a/sysdeps/powerpc/power4/fpu/mpa-arch.h
+++ b/sysdeps/powerpc/power4/fpu/mpa-arch.h
@@ -40,7 +40,7 @@ typedef double mantissa_store_t;
   ({									      \
     double u = ((x) + TWO52) - TWO52;					      \
     if (u > (x))							      \
-      u -= ONE;								      \
+      u -= 1;								      \
     (r) = u;								      \
     (x) -= u;								      \
   })

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

Summary of changes:
 ChangeLog                             |    3 +++
 sysdeps/powerpc/power4/fpu/mpa-arch.h |    2 +-
 2 files changed, 4 insertions(+), 1 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]