Subversion Repositories Kolibri OS

Rev

Rev 3031 | Rev 3480 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3031 Rev 3243
Line 61... Line 61...
61
#endif
61
#endif
62
#if __GNUC_MINOR__ >= 3 && !defined(__CHECKER__)
62
#if __GNUC_MINOR__ >= 3 && !defined(__CHECKER__)
63
#define __compiletime_warning(message) __attribute__((warning(message)))
63
#define __compiletime_warning(message) __attribute__((warning(message)))
64
#define __compiletime_error(message) __attribute__((error(message)))
64
#define __compiletime_error(message) __attribute__((error(message)))
65
#endif
65
#endif
-
 
66
 
-
 
67
#ifdef CONFIG_ARCH_USE_BUILTIN_BSWAP
-
 
68
#if __GNUC_MINOR__ >= 4
-
 
69
#define __HAVE_BUILTIN_BSWAP32__
-
 
70
#define __HAVE_BUILTIN_BSWAP64__
-
 
71
#endif
-
 
72
#if __GNUC_MINOR__ >= 8 || (defined(__powerpc__) && __GNUC_MINOR__ >= 6)
-
 
73
#define __HAVE_BUILTIN_BSWAP16__
-
 
74
#endif
-
 
75
#endif