summaryrefslogtreecommitdiff
path: root/sosemanuk.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-21 18:05:48 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-21 18:05:48 -0400
commit3c56063c3f6ce2206ed8ab78f78df5b28714573c (patch)
tree13b21a8f8a59f31c40d0164bf0f4cb9d2ea20551 /sosemanuk.cpp
parent444d1f1a3bdb2072e01683d838748f988dcbdfbb (diff)
downloadcryptopp-git-3c56063c3f6ce2206ed8ab78f78df5b28714573c.tar.gz
Added CRYPTOPP_CLANG_NO_INTEGRATED_AS as a guard in config.h (disabled by default since integrated-as is default behavior and the bug is active). GNU_ATT_SYNTAX → GNU_AS_ATT_SYNTAX and GNUINTEL_SYNTAX → GNU_AS_INTEL_SYNTAX
Diffstat (limited to 'sosemanuk.cpp')
-rw-r--r--sosemanuk.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sosemanuk.cpp b/sosemanuk.cpp
index 918c5d48..d6579e78 100644
--- a/sosemanuk.cpp
+++ b/sosemanuk.cpp
@@ -355,7 +355,7 @@ void SosemanukPolicy::OperateKeystream(KeystreamOperation operation, byte *outpu
#endif
__asm__ __volatile__
(
- GNU_INTEL_SYNTAX
+ GNU_AS_INTEL_SYNTAX
AS_PUSH_IF86( bx)
#else
word32 *state = m_state;
@@ -595,7 +595,7 @@ void SosemanukPolicy::OperateKeystream(KeystreamOperation operation, byte *outpu
#ifdef __GNUC__
AS_POP_IF86( bx)
- GNU_ATT_SYNTAX
+ GNU_AS_ATT_SYNTAX
:
: "a" (m_state.m_ptr), "c" (iterationCount), "S" (s_sosemanukMulTables), "D" (output), "d" (input)
#if CRYPTOPP_BOOL_X64