summaryrefslogtreecommitdiff
path: root/gcm.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-13 10:01:39 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-13 10:01:39 -0400
commit9b5dc3c76534cc817e940b0dd3975d113b9fd5a8 (patch)
tree719036ab1a04674f0cc371395151352b637e541a /gcm.cpp
parented9fdfc0aba1ca7d941f35704292bf4ba15c6de3 (diff)
downloadcryptopp-git-9b5dc3c76534cc817e940b0dd3975d113b9fd5a8.tar.gz
Fix gcm.cpp compile under i686 Linux after 97282f61cd8b2155
Diffstat (limited to 'gcm.cpp')
-rw-r--r--gcm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcm.cpp b/gcm.cpp
index c8ffb364..caf282a5 100644
--- a/gcm.cpp
+++ b/gcm.cpp
@@ -35,7 +35,7 @@ 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)
+#elif defined(__GNUC__)
// 'movd eax, xmm0' or 'movd rax, xmm0'. REG_WORD() macro supplies REG32 or REG64.
# define USE_MOVD_REG32_OR_REG64 1
#else