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-164-g4858fa2


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  4858fa2af6b597859ec418e7b37cc672d8d05707 (commit)
      from  bae8e7f5ed0cdc8a81ae9b32efc77285d2f5bc7a (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=4858fa2af6b597859ec418e7b37cc672d8d05707

commit 4858fa2af6b597859ec418e7b37cc672d8d05707
Author: Roland McGrath <roland@hack.frob.com>
Date:   Wed Jan 23 15:00:39 2013 -0800

    Whitespace fix for __glibc_likely/__glibc_unlikely defns.

diff --git a/ChangeLog b/ChangeLog
index 00f7027..e6f9290 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-01-23  Roland McGrath  <roland@hack.frob.com>
+
+	* misc/sys/cdefs.h (__glibc_unlikely, __glibc_likely): Fix whitespace.
+
 2013-01-23  David S. Miller  <davem@davemloft.net>
 
 	* sysdeps/sparc/sparc32/sparcv9/bits/atomic.h
diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h
index 717bb7b..81ab318 100644
--- a/misc/sys/cdefs.h
+++ b/misc/sys/cdefs.h
@@ -376,11 +376,11 @@
 #endif
 
 #if __GNUC__ >= 3
-# define __glibc_unlikely(cond) __builtin_expect((cond), 0)
-# define __glibc_likely(cond) __builtin_expect((cond), 1)
+# define __glibc_unlikely(cond)	__builtin_expect ((cond), 0)
+# define __glibc_likely(cond)	__builtin_expect ((cond), 1)
 #else
-# define __glibc_unlikely(cond) (cond)
-# define __glibc_likely(cond) (cond)
+# define __glibc_unlikely(cond)	(cond)
+# define __glibc_likely(cond)	(cond)
 #endif
 
 #include <bits/wordsize.h>

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

Summary of changes:
 ChangeLog        |    4 ++++
 misc/sys/cdefs.h |    8 ++++----
 2 files changed, 8 insertions(+), 4 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]