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.20-37-g4e8afe6


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  4e8afe69e119e6a4b148e9a6e07e5894c7f6528e (commit)
      from  af296fcdaba31c3a8062fec0b4198443bb43bd47 (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=4e8afe69e119e6a4b148e9a6e07e5894c7f6528e

commit 4e8afe69e119e6a4b148e9a6e07e5894c7f6528e
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Wed Sep 17 21:37:14 2014 +0000

    soft-fp: Correct _FP_TO_INT formatting.
    
    This patch corrects some soft-fp formatting that failed to follow the
    GNU Coding Standards.
    
    Tested for powerpc-nofpu that the disassembly of installed shared
    libraries is unchanged by this patch.
    
    	* soft-fp/op-common.h (_FP_TO_INT): Correct formatting.

diff --git a/ChangeLog b/ChangeLog
index 0d96ac4..6618eb7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-09-17  Joseph Myers  <joseph@codesourcery.com>
+
+	* soft-fp/op-common.h (_FP_TO_INT): Correct formatting.
+
 2014-09-16  Joseph Myers  <joseph@codesourcery.com>
 
 	[BZ #6652]
diff --git a/soft-fp/op-common.h b/soft-fp/op-common.h
index 5f37a32..5852a86 100644
--- a/soft-fp/op-common.h
+++ b/soft-fp/op-common.h
@@ -1373,11 +1373,13 @@
 	      r = 1;							\
 	      r <<= rsize - 1;						\
 	      r -= 1 - X##_s;						\
-	    } else {							\
-	    r = 0;							\
-	    if (!X##_s)							\
-	      r = ~r;							\
-	  }								\
+	    }								\
+	  else								\
+	    {								\
+	      r = 0;							\
+	      if (!X##_s)						\
+		r = ~r;							\
+	    }								\
 									\
 	  if (rsigned && X##_s && X##_e == _FP_EXPBIAS_##fs + rsize - 1) \
 	    {								\

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

Summary of changes:
 ChangeLog           |    4 ++++
 soft-fp/op-common.h |   12 +++++++-----
 2 files changed, 11 insertions(+), 5 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]