Add missing guard for LSH-256

This commit is contained in:
Jeffrey Walton 2021-04-17 03:41:09 -04:00
parent 7d6a259140
commit 435b4f050b
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -22,10 +22,12 @@
# define CONST_M128_CAST(x) ((const __m128i *)(const void *)(x))
#endif
#if defined(__XOP__)
# include <ammintrin.h>
# if defined(__GNUC__)
# include <x86intrin.h>
#if defined(CRYPTOPP_LSH256_ASM_AVAILABLE)
# if defined(__XOP__)
# include <ammintrin.h>
# if defined(__GNUC__)
# include <x86intrin.h>
# endif
# endif
#endif