summaryrefslogtreecommitdiff
path: root/vmac.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-09-23 20:56:01 -0400
committerJeffrey Walton <noloader@gmail.com>2016-09-23 20:56:01 -0400
commit0a22957481b7a9bd963bec94bb81cc6df6f0b413 (patch)
tree01fe20fde12cdc6a34720a356099ef6d34bede13 /vmac.h
parentb1196d8319d9145714d052916dac1e327fec10ba (diff)
downloadcryptopp-git-0a22957481b7a9bd963bec94bb81cc6df6f0b413.tar.gz
Disable X86 ASM for VMAC (Issue 304)
Address Sanitizer reports problems from GCC 4.9 to 5.3 compilers. Valgrind 2.13-SVN does not report a problem. It needs to be investiagted more to determine what's going on
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 3c6bb858..b43af5bf 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
+#if (defined(CRYPTOPP_LLVM_CLANG_VERSION) && (CRYPTOPP_LLVM_CLANG_VERSION < 30400)) || CRYPTOPP_BOOL_X32 || CRYPTOPP_BOOL_X86
# define CRYPTOPP_DISABLE_VMAC_ASM
#endif