From: bernie Date: Tue, 24 Aug 2004 14:13:48 +0000 (+0000) Subject: Restore a few macros that were lost in the way. X-Git-Tag: 1.0.0~1090 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=4fcd224037bf57ae177034834492de5521662afd;p=bertos.git Restore a few macros that were lost in the way. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@151 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/macros.h b/macros.h index 90f6b7db..f027ce2b 100755 --- a/macros.h +++ b/macros.h @@ -15,6 +15,9 @@ /* * $Log$ + * Revision 1.3 2004/08/24 14:13:48 bernie + * Restore a few macros that were lost in the way. + * * Revision 1.2 2004/08/24 13:32:14 bernie * PP_CAT(), PP_STRINGIZE(): Move back to compiler.h to break circular dependency between cpu.h/compiler.h/macros.h; * offsetof(), countof(): Move back to compiler.h to avoid including macros.h almost everywhere; @@ -45,10 +48,30 @@ #include -/* Simple macros */ -#define ABS(a) (((a) < 0) ? -(a) : (a)) -#define MIN(a,b) (((a) < (b)) ? (a) : (b)) -#define MAX(a,b) (((a) > (b)) ? (a) : (b)) +/* Type-generic macros */ +#if GNUC_PREREQ(2,0) + #define ABS(n) ({ \ + __typeof__(n) _n = (n); \ + (_n < 0) ? -_n : _n; \ + }) + #define MIN(a,b) ({ \ + __typeof__(a) _a = (a); \ + __typeof__(b) _b = (b); \ + (void)(&_a == &_b); /* ensure same type */ \ + (_a < _b) ? _a : _b; \ + }) + #define MAX(a,b) ({ \ + __typeof__(a) _a = (a); \ + __typeof__(b) _b = (b); \ + (void)(&_a == &_b); /* ensure same type */ \ + (_a > _b) ? _a : _b; \ + }) +#else /* !GNUC */ + /* Buggy macros for inferior compilers. */ + #define ABS(a) (((a) < 0) ? -(a) : (a)) + #define MIN(a,b) (((a) < (b)) ? (a) : (b)) + #define MAX(a,b) (((a) > (b)) ? (a) : (b)) +#endif /* !GNUC */ #ifndef BV /*! Convert a bit value to a binary flag */ @@ -89,8 +112,7 @@ /*! Issue a compilation error if the \a condition is false */ #define STATIC_ASSERT(condition) \ - extern char CT_ASSERT___[(condition) ? 1 : -1] - + extern char PP_CAT(CT_ASSERT___, __LINE__)[(condition) ? 1 : -1] #if COMPILER_C99 /*!