From f3acac1f7e1e5d3826de4638fed4023183140e7a Mon Sep 17 00:00:00 2001 From: bernie Date: Tue, 12 Apr 2005 01:37:01 +0000 Subject: [PATCH] Metrowerks touchups from HeCo. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@406 38d2e660-2303-0410-9eaa-f027e97ec537 --- cfg/compiler.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/cfg/compiler.h b/cfg/compiler.h index 79a8d27a..93f69927 100755 --- a/cfg/compiler.h +++ b/cfg/compiler.h @@ -14,6 +14,9 @@ /*#* *#* $Log$ + *#* Revision 1.3 2005/04/12 01:37:01 bernie + *#* Metrowerks touchups from HeCo. + *#* *#* Revision 1.2 2005/04/11 19:10:27 bernie *#* Include top-level headers from cfg/ subdir. *#* @@ -137,14 +140,14 @@ #define NORETURN __attribute__((__noreturn__)) #define UNUSED_ARG(type,arg) __attribute__((__unused__)) type arg #define UNUSED_VAR(type,name) __attribute__((__unused__)) type name - #define USED_VAR(type,name) __attribute__((__used__)) type name + #define USED_VAR(type,name) __attribute__((__used__)) type name #define INLINE static inline __attribute__((__always_inline__)) #define LIKELY(x) __builtin_expect(!!(x), 1) #define UNLIKELY(x) __builtin_expect(!!(x), 0) #define PURE_FUNC __attribute__((pure)) #define CONST_FUNC __attribute__((const)) #define UNUSED_FUNC __attribute__((unused)) - #define USED_FUNC __attribute__((__used__)) + #define USED_FUNC __attribute__((__used__)) #define RESTRICT __restrict__ #define MUST_CHECK __attribute__((warn_unused_result)) #if GNUC_PREREQ(3,1) @@ -171,7 +174,7 @@ #pragma GCC poison cin cout cerr clog #endif -#elif defined(__MWERKS__) && CPU_DSP56K +#elif defined(__MWERKS__) /* Compiler features */ #define COMPILER_VARIADIC_MACROS 1 @@ -180,6 +183,8 @@ #define typeof __typeof__ + #define UNUSED_ARG(type,arg) type + #include #include #include -- 2.25.1