Optimization stuff

This commit is contained in:
Adam Ierymenko 2019-08-23 12:18:02 -07:00
commit 8e87319925
No known key found for this signature in database
GPG key ID: 1657198823E52A61
2 changed files with 23 additions and 23 deletions

View file

@ -142,7 +142,7 @@
#endif
#if (defined(__GNUC__) && (__GNUC__ >= 3)) || (defined(__INTEL_COMPILER) && (__INTEL_COMPILER >= 800)) || defined(__clang__)
#define ZT_ALWAYS_INLINE __attribute__((always_inline))
#define ZT_ALWAYS_INLINE inline __attribute__((always_inline))
#ifndef likely
#define likely(x) __builtin_expect((x),1)
#endif