Skip to content

Instantly share code, notes, and snippets.

@airekans
Created December 24, 2014 09:05
Show Gist options
  • Save airekans/0bcf50b98d612466e0a6 to your computer and use it in GitHub Desktop.
Save airekans/0bcf50b98d612466e0a6 to your computer and use it in GitHub Desktop.
likely/unlikely macro in C
#ifdef HAVE_BUILTIN_EXPECT
#define LIKELY(x) __builtin_expect(!!(x), 1)
#define UNLIKELY(x) __builtin_expect(!!(x), 0)
#else
#define LIKELY(x) (x)
#define UNLIKELY(x) (x)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment