mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
Don't use __glibc_unlikely in shared code
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user