Fix gcm.cpp compile under i686 Linux after 97282f61cd

pull/270/head
Jeffrey Walton 2016-09-13 10:01:39 -04:00
parent ed9fdfc0ab
commit 9b5dc3c765
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ NAMESPACE_BEGIN(CryptoPP)
#elif (defined(CRYPTOPP_LLVM_CLANG_VERSION) || defined(CRYPTOPP_APPLE_CLANG_VERSION)) && defined(CRYPTOPP_X64_ASM_AVAILABLE) #elif (defined(CRYPTOPP_LLVM_CLANG_VERSION) || defined(CRYPTOPP_APPLE_CLANG_VERSION)) && defined(CRYPTOPP_X64_ASM_AVAILABLE)
// 'movd eax, xmm0' or 'movd rax, xmm0'. REG_WORD() macro supplies REG32 or REG64. // 'movd eax, xmm0' or 'movd rax, xmm0'. REG_WORD() macro supplies REG32 or REG64.
# define USE_MOVD_REG32_OR_REG64 1 # define USE_MOVD_REG32_OR_REG64 1
#elif defined(__GNUC__) && defined(CRYPTOPP_X64_ASM_AVAILABLE) #elif defined(__GNUC__)
// 'movd eax, xmm0' or 'movd rax, xmm0'. REG_WORD() macro supplies REG32 or REG64. // 'movd eax, xmm0' or 'movd rax, xmm0'. REG_WORD() macro supplies REG32 or REG64.
# define USE_MOVD_REG32_OR_REG64 1 # define USE_MOVD_REG32_OR_REG64 1
#else #else