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.16-ports-merge-837-ga0d7066


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  a0d7066a1c6b86adbf1fa13f14038e30885cf1da (commit)
      from  66ca5a5b9375ddf95334d59fdde15a962f2c19dd (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=a0d7066a1c6b86adbf1fa13f14038e30885cf1da

commit a0d7066a1c6b86adbf1fa13f14038e30885cf1da
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Wed Dec 5 20:04:32 2012 +0000

    Fix "set but not used" warnings for X##_s in soft-fp.

diff --git a/ChangeLog b/ChangeLog
index a577d3d..0acc46b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2012-12-05  Joseph Myers  <joseph@codesourcery.com>
 
+	* soft-fp/op-common.h (_FP_DECL): Declare X##_s with __attribute__
+	((unused)).
+
 	* sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Include <stdlib.h>.
 
 	* stdio-common/tst-put-error.c (do_test): Use 10000000 instead of
diff --git a/soft-fp/op-common.h b/soft-fp/op-common.h
index 12fb16e..8855ad3 100644
--- a/soft-fp/op-common.h
+++ b/soft-fp/op-common.h
@@ -29,8 +29,10 @@
    License along with the GNU C Library; if not, see
    <http://www.gnu.org/licenses/>.  */
 
-#define _FP_DECL(wc, X)						\
-  _FP_I_TYPE X##_c __attribute__((unused)), X##_s, X##_e;	\
+#define _FP_DECL(wc, X)				\
+  _FP_I_TYPE X##_c __attribute__((unused));	\
+  _FP_I_TYPE X##_s __attribute__((unused));	\
+  _FP_I_TYPE X##_e;				\
   _FP_FRAC_DECL_##wc(X)
 
 /*

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

Summary of changes:
 ChangeLog           |    3 +++
 soft-fp/op-common.h |    6 ++++--
 2 files changed, 7 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]