From: Timothy Arceri Date: Wed, 17 Dec 2014 20:45:04 +0000 (+1100) Subject: gallium: remove support for GCC older than 4.2.0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=743a684512b1801de7f45b791181b5c8411fcc34;p=mesa.git gallium: remove support for GCC older than 4.2.0 Signed-off-by: Timothy Arceri Reviewed-by: Ian Romanick Reviewed-by: Matt Turner --- diff --git a/src/gallium/include/pipe/p_compiler.h b/src/gallium/include/pipe/p_compiler.h index 939fb06998b..fb018bf0542 100644 --- a/src/gallium/include/pipe/p_compiler.h +++ b/src/gallium/include/pipe/p_compiler.h @@ -155,7 +155,7 @@ typedef unsigned char boolean; /* See http://gcc.gnu.org/onlinedocs/gcc-4.4.2/gcc/Variable-Attributes.html */ #define PIPE_ALIGN_VAR(_alignment) __attribute__((aligned(_alignment))) -#if (__GNUC__ > 4 || (__GNUC__ == 4 &&__GNUC_MINOR__>1)) && !defined(PIPE_ARCH_X86_64) +#if defined(__GNUC__) && !defined(PIPE_ARCH_X86_64) #define PIPE_ALIGN_STACK __attribute__((force_align_arg_pointer)) #else #define PIPE_ALIGN_STACK