diff options
Diffstat (limited to 'src/lib/libcrypto/camellia/camellia.c')
-rw-r--r-- | src/lib/libcrypto/camellia/camellia.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/camellia/camellia.c b/src/lib/libcrypto/camellia/camellia.c index 44c4202c2b..2c02466564 100644 --- a/src/lib/libcrypto/camellia/camellia.c +++ b/src/lib/libcrypto/camellia/camellia.c | |||
@@ -87,7 +87,7 @@ | |||
87 | #include <stdlib.h> | 87 | #include <stdlib.h> |
88 | 88 | ||
89 | /* 32-bit rotations */ | 89 | /* 32-bit rotations */ |
90 | #if !defined(PEDANTIC) && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) | 90 | #if !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) |
91 | # if defined(__GNUC__) && __GNUC__>=2 | 91 | # if defined(__GNUC__) && __GNUC__>=2 |
92 | # if defined(__i386) || defined(__x86_64) | 92 | # if defined(__i386) || defined(__x86_64) |
93 | # define RightRotate(x,s) ({u32 ret; asm ("rorl %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) | 93 | # define RightRotate(x,s) ({u32 ret; asm ("rorl %1,%0":"=r"(ret):"I"(s),"0"(x):"cc"); ret; }) |