summaryrefslogtreecommitdiff
path: root/vmac.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-26 00:17:36 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-26 00:17:36 -0400
commit51884539cbbe17834e4a3c8436b606c211668fdf (patch)
tree32b00da5af1d426d5ba8fb7cdf18a74605e4106f /vmac.h
parent6b49827ee54dbc1af1994f1321a67bfd4c6ece46 (diff)
downloadcryptopp-git-51884539cbbe17834e4a3c8436b606c211668fdf.tar.gz
Enable VMAC for X86 ASM
X64 ASM was not previously disabled. X32 must be disabled until the port is complete
Diffstat (limited to 'vmac.h')
-rw-r--r--vmac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmac.h b/vmac.h
index b43af5bf..3c6bb858 100644
--- a/vmac.h
+++ b/vmac.h
@@ -12,7 +12,7 @@
// Clang 3.3 integrated assembler crash on Linux
// http://github.com/weidai11/cryptopp/issues/264
-#if (defined(CRYPTOPP_LLVM_CLANG_VERSION) && (CRYPTOPP_LLVM_CLANG_VERSION < 30400)) || CRYPTOPP_BOOL_X32 || CRYPTOPP_BOOL_X86
+#if (defined(CRYPTOPP_LLVM_CLANG_VERSION) && (CRYPTOPP_LLVM_CLANG_VERSION < 30400)) || CRYPTOPP_BOOL_X32
# define CRYPTOPP_DISABLE_VMAC_ASM
#endif