From: Siddhesh Poyarekar Date: Wed, 2 Jul 2014 20:00:02 +0000 (+0530) Subject: Don't use __glibc_unlikely in shared code X-Git-Tag: upstream/2.30~7164 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=05fdac772bee5352a52f26682dd351712e92f9b3;p=external%2Fglibc.git Don't use __glibc_unlikely in shared code --- diff --git a/ChangeLog b/ChangeLog index b523896..7b33604 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2014-07-02 Siddhesh Poyarekar + * intl/loadmsgcat.c (_nl_load_domain): Use __builtin_expect. + * debug/memcpy_chk.c: Don't include pagecopy.h. * debug/mempcpy_chk.c: Likewise. * string/memcpy.c: Likewise. diff --git a/intl/loadmsgcat.c b/intl/loadmsgcat.c index 325d699..7497172 100644 --- a/intl/loadmsgcat.c +++ b/intl/loadmsgcat.c @@ -820,7 +820,7 @@ _nl_load_domain (struct loaded_l10nfile *domain_file, data = (struct mo_file_header *) mmap (NULL, size, PROT_READ, MAP_PRIVATE, fd, 0); - if (__glibc_likely (data != MAP_FAILED)) + if (__builtin_expect (data != MAP_FAILED, 1)) { /* mmap() call was successful. */ close (fd); @@ -1248,7 +1248,7 @@ _nl_load_domain (struct loaded_l10nfile *domain_file, /* Get the header entry and look for a plural specification. */ nullentry = _nl_find_msg (domain_file, domainbinding, "", 0, &nullentrylen); - if (__glibc_unlikely (nullentry == (char *) -1)) + if (__builtin_expect (nullentry == (char *) -1, 0)) { __libc_rwlock_fini (domain->conversions_lock); goto invalid;