diff options
Diffstat (limited to 'src/localconsts.h')
-rw-r--r-- | src/localconsts.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/localconsts.h b/src/localconsts.h index 544b85a02..d237d93eb 100644 --- a/src/localconsts.h +++ b/src/localconsts.h @@ -139,9 +139,11 @@ #endif // ENABLE_CILKPLUS #ifdef __x86_64__ -#ifndef __clang__ +#if !defined(__clang__) && defined(__GNUC__) +#if GCC_VERSION >= 40700 #define SIMD_SUPPORTED -#endif // __clang__ +#endif // GCC_VERSION > 40700 +#endif // !defined(__clang__) && defined(__GNUC__) #endif // __x86_64__ #ifdef SIMD_SUPPORTED |