diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-28 00:05:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-28 00:05:17 +0300 |
commit | 4a9bc602219670ff44e0f12fd35f9976f93ad79c (patch) | |
tree | cfa9d175a07d8f2c76966a49e2402a3a2e46b032 | |
parent | 3597522e3cb729603e03e96d9aa530e598b3cb99 (diff) | |
download | plus-4a9bc602219670ff44e0f12fd35f9976f93ad79c.tar.gz plus-4a9bc602219670ff44e0f12fd35f9976f93ad79c.tar.bz2 plus-4a9bc602219670ff44e0f12fd35f9976f93ad79c.tar.xz plus-4a9bc602219670ff44e0f12fd35f9976f93ad79c.zip |
Enable simd for clang 3.8 or newer.
-rw-r--r-- | src/localconsts.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/localconsts.h b/src/localconsts.h index b1318e7ef..cea4d45f6 100644 --- a/src/localconsts.h +++ b/src/localconsts.h @@ -143,9 +143,9 @@ #if GCC_VERSION >= 40900 #define SIMD_SUPPORTED #endif // GCC_VERSION > 40900 -#if defined(__clang__) && CLANG_VERSION >= 30600 +#if defined(__clang__) && CLANG_VERSION >= 30800 #define SIMD_SUPPORTED -#endif // defined(__clang__) && CLANG_VERSION >= 30600 +#endif // defined(__clang__) && CLANG_VERSION >= 30800 #endif // __x86_64__ #ifdef SIMD_SUPPORTED |