summaryrefslogtreecommitdiff
path: root/tiger.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 /tiger.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 'tiger.cpp')
-rw-r--r--tiger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tiger.cpp b/tiger.cpp
index 185816e9..ef10532d 100644
--- a/tiger.cpp
+++ b/tiger.cpp
@@ -38,7 +38,7 @@ void Tiger::Transform (word64 *digest, const word64 *X)
#ifdef __GNUC__
__asm__ __volatile__
(
- GNU_INTEL_SYNTAX
+ GNU_AS_INTEL_SYNTAX
AS1( push ebx)
#else
#if _MSC_VER < 1300
@@ -194,7 +194,7 @@ void Tiger::Transform (word64 *digest, const word64 *X)
AS1( emms)
#ifdef __GNUC__
AS1( pop ebx)
- GNU_ATT_SYNTAX
+ GNU_AS_ATT_SYNTAX
:
: "a" (digest), "S" (X), "d" (table)
: "%ecx", "%edi", "memory", "cc"