mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
21 lines
614 B
C
21 lines
614 B
C
#ifndef COSMOPOLITAN_LIBC_BITS_LIKELY_H_
|
|
#define COSMOPOLITAN_LIBC_BITS_LIKELY_H_
|
|
#ifdef _COSMO_SOURCE
|
|
|
|
#define LIKELY(x) __builtin_expect(!!(x), 1)
|
|
#define UNLIKELY(x) __builtin_expect(!!(x), 0)
|
|
|
|
#if __GNUC__ + 0 >= 9 && !defined(__chibicc__)
|
|
#define VERY_LIKELY(x) __builtin_expect_with_probability(!!(x), 1, 0.999)
|
|
#else
|
|
#define VERY_LIKELY(x) LIKELY(x)
|
|
#endif
|
|
|
|
#if __GNUC__ + 0 >= 9 && !defined(__chibicc__)
|
|
#define VERY_UNLIKELY(x) __builtin_expect_with_probability(!!(x), 0, 0.999)
|
|
#else
|
|
#define VERY_UNLIKELY(x) UNLIKELY(x)
|
|
#endif
|
|
|
|
#endif /* _COSMO_SOURCE */
|
|
#endif /* COSMOPOLITAN_LIBC_BITS_LIKELY_H_ */
|