Merge pull request #1713 from cemeyer/fix_gcc4_build

Fix the build on GCC 4.x after 812e8f2a1
dev
Yann Collet 2019-08-21 05:17:42 -07:00 committed by GitHub
commit 757ab66879
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@
}
/* vectorization */
#if !defined(__clang__) && defined(__GNUC__)
#if !defined(__clang__) && defined(__GNUC__) && __GNUC__ >= 5
# define DONT_VECTORIZE __attribute__((optimize("no-tree-vectorize")))
#else
# define DONT_VECTORIZE