Disable EDUKE32_PREDICT_TRUE and EDUKE32_PREDICT_FALSE for now

git-svn-id: https://svn.eduke32.com/eduke32@8553 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2020-01-29 11:36:52 +00:00 committed by Christoph Oelckers
parent aebc2632f3
commit 6836faee07

View file

@ -165,7 +165,7 @@
# define EXTERN_INLINE_HEADER extern __fastcall
#endif
#if defined(__OPTIMIZE__) && (defined __GNUC__ || __has_builtin(__builtin_expect))
#if 0 && defined(__OPTIMIZE__) && (defined __GNUC__ || __has_builtin(__builtin_expect))
#define EDUKE32_PREDICT_TRUE(x) __builtin_expect(!!(x),1)
#define EDUKE32_PREDICT_FALSE(x) __builtin_expect(!!(x),0)
#else