[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 1/3] xtf: don't re-define __noinline
On FreeBSD __noinline is already defined in cdefs.h Signed-off-by: Roger Pau Monné <roger.pau@xxxxxxxxxx> --- Cc: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- include/xtf/compiler.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/xtf/compiler.h b/include/xtf/compiler.h index 47d929c..251b853 100644 --- a/include/xtf/compiler.h +++ b/include/xtf/compiler.h @@ -4,7 +4,9 @@ #define __aligned(x) __attribute__((__aligned__(x))) #define __packed __attribute__((__packed__)) +#ifndef __noinline /* Avoid conflicting with cdefs.h */ #define __noinline __attribute__((__noinline__)) +#endif #ifndef __always_inline /* Avoid conflicting with cdefs.h */ #define __always_inline __attribute__((__always_inline__)) -- 2.7.4 (Apple Git-66) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |