From 92f6b65e0a5baf15c7bcd53908fb0cd639e582cd Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 6 Mar 2003 06:40:43 +0000 Subject: (_dl_allocate_tls_storage): Fix reversed __builtin_expect expectation. --- sysdeps/generic/dl-tls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/generic') diff --git a/sysdeps/generic/dl-tls.c b/sysdeps/generic/dl-tls.c index 5ec7249e34..19cf0aa072 100644 --- a/sysdeps/generic/dl-tls.c +++ b/sysdeps/generic/dl-tls.c @@ -294,7 +294,7 @@ _dl_allocate_tls_storage (void) /* Allocate a correctly aligned chunk of memory. */ result = __libc_memalign (GL(dl_tls_static_align), size); - if (__builtin_expect (result != NULL, 0)) + if (__builtin_expect (result != NULL, 1)) { /* Allocate the DTV. */ void *allocated = result; -- cgit 1.4.1