mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
Fix gcm.cpp compile under x86_64 Linux after 4f7fb2067d
This commit is contained in:
parent
fff2c91b96
commit
97282f61cd
3
gcm.cpp
3
gcm.cpp
@ -35,6 +35,9 @@ NAMESPACE_BEGIN(CryptoPP)
|
||||
#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.
|
||||
# define USE_MOVD_REG32_OR_REG64 1
|
||||
#elif defined(__GNUC__) && defined(CRYPTOPP_X64_ASM_AVAILABLE)
|
||||
// 'movd eax, xmm0' or 'movd rax, xmm0'. REG_WORD() macro supplies REG32 or REG64.
|
||||
# define USE_MOVD_REG32_OR_REG64 1
|
||||
#else
|
||||
// 'mov eax, xmm0' or 'mov rax, xmm0'. REG_WORD() macro supplies REG32 or REG64.
|
||||
# define USE_MOV_REG32_OR_REG64 1
|
||||
|
Loading…
Reference in New Issue
Block a user