summaryrefslogtreecommitdiffstats
path: root/src/gallium/include/pipe/p_compiler.h
diff options
context:
space:
mode:
authorTimothy Arceri <t_arceri@yahoo.com.au>2014-12-18 07:45:04 +1100
committerTimothy Arceri <t_arceri@yahoo.com.au>2014-12-18 16:08:19 +1100
commit743a684512b1801de7f45b791181b5c8411fcc34 (patch)
tree76074a60bbb9467b7151e23be2c93709f2e38ace /src/gallium/include/pipe/p_compiler.h
parent6852dce591a23656eaf04f14304e5feeb4ed3c01 (diff)
downloadexternal_mesa3d-743a684512b1801de7f45b791181b5c8411fcc34.zip
external_mesa3d-743a684512b1801de7f45b791181b5c8411fcc34.tar.gz
external_mesa3d-743a684512b1801de7f45b791181b5c8411fcc34.tar.bz2
gallium: remove support for GCC older than 4.2.0
Signed-off-by: Timothy Arceri <t_arceri@yahoo.com.au> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/gallium/include/pipe/p_compiler.h')
-rw-r--r--src/gallium/include/pipe/p_compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_compiler.h b/src/gallium/include/pipe/p_compiler.h
index 939fb06..fb018bf 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