From: Timothy Arceri Date: Fri, 12 Dec 2014 09:47:43 +0000 (+1100) Subject: util: remove support for GCC older than 4.1.0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e801fbb8131a6124e4f9663e97c66de24918a584;p=mesa.git util: remove support for GCC older than 4.1.0 Signed-off-by: Timothy Arceri Reviewed-By: Jose Fonseca Reviewed-by: Ian Romanick Reviewed-by: Matt Turner --- diff --git a/src/util/u_atomic.h b/src/util/u_atomic.h index 56c5740bfbd..40100363875 100644 --- a/src/util/u_atomic.h +++ b/src/util/u_atomic.h @@ -21,7 +21,7 @@ #define PIPE_ATOMIC_OS_SOLARIS #elif defined(_MSC_VER) #define PIPE_ATOMIC_MSVC_INTRINSIC -#elif defined(__GNUC__) && ((__GNUC__ * 100 + __GNUC_MINOR__) >= 401) +#elif defined(__GNUC__) #define PIPE_ATOMIC_GCC_INTRINSIC #else #error "Unsupported platform"