[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] xen/common: Uniformally use __ varients for attribute names
Otherwise, debug code such as "void __attribute__((noreturn)) foobar()" fails to compile when the noreturn itself gets expanded, resulting in __attribute__((__attribute__((noreturn)))). No function change. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- CC: Jan Beulich <JBeulich@xxxxxxxx> CC: Tim Deegan <tim@xxxxxxx> CC: Ian Campbell <Ian.Campbell@xxxxxxxxxx> --- xen/include/xen/compiler.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/xen/include/xen/compiler.h b/xen/include/xen/compiler.h index 4b3472d..892455b 100644 --- a/xen/include/xen/compiler.h +++ b/xen/include/xen/compiler.h @@ -11,12 +11,12 @@ #define unlikely(x) __builtin_expect(!!(x),0) #define inline __inline__ -#define always_inline __inline__ __attribute__ ((always_inline)) -#define noinline __attribute__((noinline)) +#define always_inline __inline__ __attribute__ ((__always_inline__)) +#define noinline __attribute__((__noinline__)) -#define noreturn __attribute__((noreturn)) +#define noreturn __attribute__((__noreturn__)) -#define __packed __attribute__((packed)) +#define __packed __attribute__((__packed__)) #if (!defined(__clang__) && (__GNUC__ == 4) && (__GNUC_MINOR__ < 5)) #define unreachable() do {} while (1) @@ -43,7 +43,7 @@ #define __inline__ __inline__ __init #endif -#define __attribute_pure__ __attribute__((pure)) +#define __attribute_pure__ __attribute__((__pure__)) #define __attribute_const__ __attribute__((__const__)) /* @@ -60,7 +60,7 @@ #define __used __attribute__((__used__)) #define __maybe_unused __attribute__((__unused__)) -#define __must_check __attribute__((warn_unused_result)) +#define __must_check __attribute__((__warn_unused_result__)) #define offsetof(a,b) __builtin_offsetof(a,b) -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |