Merged in beol/gf-complete (pull request #23)

On CPU that doesn't support SSE4.2 instructions set, this will fail
master
Kevin Greenan 2014-08-23 11:14:11 -07:00
commit 87d7e8fbb0
1 changed files with 6 additions and 1 deletions

View File

@ -13,7 +13,12 @@
#include <stdint.h>
#ifdef INTEL_SSE4
#include <nmmintrin.h>
#ifdef __SSE4_2__
#include <nmmintrin.h>
#endif
#ifdef __SSE4_1__
#include <smmintrin.h>
#endif
#endif
#ifdef INTEL_SSSE3