summaryrefslogtreecommitdiff
path: root/gcm.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-12-05 13:22:10 -0500
committerGitHub <noreply@github.com>2018-12-05 13:22:10 -0500
commit8769302a8b6feffbf213820ced0fe7a08112f06c (patch)
treeb91054346846acddfaedcfb7fe28c66c75181120 /gcm.h
parent4b295f1f32e3ce3461a13c166dc3cf08242da7d0 (diff)
downloadcryptopp-git-8769302a8b6feffbf213820ced0fe7a08112f06c.tar.gz
Add CRYPTOPP_DISABLE_MIXED_ASM define and feature test (GH #756, PR #757)
Diffstat (limited to 'gcm.h')
-rw-r--r--gcm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcm.h b/gcm.h
index b285c89b..db42aad5 100644
--- a/gcm.h
+++ b/gcm.h
@@ -12,7 +12,7 @@
// Clang 3.3 integrated assembler crash on Linux. Clang 3.4 due to compiler
// error with .intel_syntax, http://llvm.org/bugs/show_bug.cgi?id=24232
-#if CRYPTOPP_BOOL_X32 || defined(CRYPTOPP_DISABLE_INTEL_ASM)
+#if CRYPTOPP_BOOL_X32 || defined(CRYPTOPP_DISABLE_MIXED_ASM)
# define CRYPTOPP_DISABLE_GCM_ASM 1
#endif