diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-23 09:52:40 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-03-14 22:49:25 +0100 |
commit | d1e51157725a4defd46c298ce1026d0f5d48da3c (patch) | |
tree | 6684eec44d1846c7eeb1ce48b383203a8058b78b /libc/sysdeps/linux/powerpc | |
parent | 950fcf0f68732a9aafacb5dfd33e7a7612141722 (diff) |
libc: switch several users to unlikely()
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/powerpc')
-rw-r--r-- | libc/sysdeps/linux/powerpc/bits/syscalls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/powerpc/bits/syscalls.h b/libc/sysdeps/linux/powerpc/bits/syscalls.h index 026bbf2af..c52d5dd5b 100644 --- a/libc/sysdeps/linux/powerpc/bits/syscalls.h +++ b/libc/sysdeps/linux/powerpc/bits/syscalls.h @@ -167,7 +167,7 @@ }) \ ) # define INTERNAL_SYSCALL_ERROR_P(val, err) \ - ((void) (val), __builtin_expect ((err) & (1 << 28), 0)) + ((void) (val), unlikely ((err) & (1 << 28))) # define INTERNAL_SYSCALL_ERRNO(val, err) (val) |