X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fcompiler.h;h=ed74c272b8c507b99e234369a81bf047a7ab9fc9;hb=9b20a794a71151a3a690242b5161b4ca5effd3e7;hp=90372f239c0938355176153de063a8546486a757;hpb=5a8fa095cb848c60c630a83edf30d4fc46101e90;p=oweals%2Fu-boot.git diff --git a/include/compiler.h b/include/compiler.h index 90372f239c..ed74c272b8 100644 --- a/include/compiler.h +++ b/include/compiler.h @@ -144,4 +144,8 @@ typedef unsigned long int uintptr_t; #define likely(x) __builtin_expect(!!(x), 1) #define unlikely(x) __builtin_expect(!!(x), 0) +#ifdef __LP64__ +#define MEM_SUPPORT_64BIT_DATA +#endif + #endif