Avoid unknown pragma on !__GCC__

This commit is contained in:
Frank Denis 2014-05-08 21:44:57 -07:00
parent ffe144ac04
commit af2246881d

View File

@ -29,7 +29,9 @@
*/
#if defined(HAVE_EMMINTRIN_H) || defined(_MSC_VER)
#pragma GCC target("sse2")
# if __GNUC__
# pragma GCC target("sse2")
# endif
#include <emmintrin.h>
#if defined(__XOP__) && defined(DISABLED)
#include <x86intrin.h>