00db10
commit 91998e449e0ce758db55aecf2abc3ee510fcbc8f
00db10
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
00db10
Date:   Fri Dec 28 11:53:01 2012 +0530
00db10
00db10
    Add __glibc_likely as an alias for __builtin_expect when available
00db10
00db10
diff --git glibc-2.17-c758a686/misc/sys/cdefs.h glibc-2.17-c758a686/misc/sys/cdefs.h
00db10
index fb6c959..1eee54e 100644
00db10
--- glibc-2.17-c758a686/misc/sys/cdefs.h
00db10
+++ glibc-2.17-c758a686/misc/sys/cdefs.h
00db10
@@ -378,8 +378,10 @@
00db10
 
00db10
 #if __GNUC__ >= 3
00db10
 # define __glibc_unlikely(cond) __builtin_expect((cond), 0)
00db10
+# define __glibc_likely(cond) __builtin_expect((cond), 1)
00db10
 #else
00db10
 # define __glibc_unlikely(cond) (cond)
00db10
+# define __glibc_likely(cond) (cond)
00db10
 #endif
00db10
 
00db10
 #include <bits/wordsize.h>