aboutsummaryrefslogtreecommitdiffstats
path: root/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/internal.h b/internal.h
index f3767110cc..371cb1b83a 100644
--- a/internal.h
+++ b/internal.h
@@ -23,15 +23,6 @@ extern "C" {
#endif
#endif
-/* likely */
-#if __GNUC__ >= 3
-#define LIKELY(x) (__builtin_expect(!!(x), 1))
-#define UNLIKELY(x) (__builtin_expect(!!(x), 0))
-#else /* __GNUC__ >= 3 */
-#define LIKELY(x) (x)
-#define UNLIKELY(x) (x)
-#endif /* __GNUC__ >= 3 */
-
#ifndef __has_attribute
# define __has_attribute(x) 0
#endif