about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-01-30 21:42:21 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-01-30 21:42:21 +0100
commit407552cf0b1cc7b992c5a8ad7f29ba5ce6ac5dfc (patch)
tree88f6385b87784d11988f1b854560134fd97f59a5 /sysdeps
parentd31a4a4803fab392e8111eec117dbb62531d202c (diff)
downloadglibc-407552cf0b1cc7b992c5a8ad7f29ba5ce6ac5dfc.tar.gz
glibc-407552cf0b1cc7b992c5a8ad7f29ba5ce6ac5dfc.tar.xz
glibc-407552cf0b1cc7b992c5a8ad7f29ba5ce6ac5dfc.zip
allocalim.h: use __glibc_likely instead of __builtin_expect
	* sysdeps/pthread/allocalim.h (__libc_use_alloca): Use __glibc_likely
	instead of __builtin_expect.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/pthread/allocalim.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/pthread/allocalim.h b/sysdeps/pthread/allocalim.h
index 38faf57b70..99f74838dd 100644
--- a/sysdeps/pthread/allocalim.h
+++ b/sysdeps/pthread/allocalim.h
@@ -24,9 +24,9 @@ extern __always_inline
 int
 __libc_use_alloca (size_t size)
 {
-  return (__builtin_expect (__libc_alloca_cutoff (size), 1)
+  return (__glibc_likely (__libc_alloca_cutoff (size))
 #ifdef PTHREAD_STACK_MIN
-          || __builtin_expect (size <= PTHREAD_STACK_MIN / 4, 1)
+          || __glibc_likely (size <= PTHREAD_STACK_MIN / 4)
 #endif
 	  );
 }