summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/aes/aes_x86core.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/aes/aes_x86core.c')
-rw-r--r--src/lib/libcrypto/aes/aes_x86core.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/aes/aes_x86core.c b/src/lib/libcrypto/aes/aes_x86core.c
index c5d17b3127..295ea22bb4 100644
--- a/src/lib/libcrypto/aes/aes_x86core.c
+++ b/src/lib/libcrypto/aes/aes_x86core.c
@@ -91,9 +91,7 @@ typedef unsigned long long u64;
91#endif 91#endif
92 92
93#undef ROTATE 93#undef ROTATE
94#if defined(_MSC_VER) || defined(__ICC) 94#if defined(__GNUC__) && __GNUC__>=2
95# define ROTATE(a,n) _lrotl(a,n)
96#elif defined(__GNUC__) && __GNUC__>=2
97# if defined(__i386) || defined(__i386__) || defined(__x86_64) || defined(__x86_64__) 95# if defined(__i386) || defined(__i386__) || defined(__x86_64) || defined(__x86_64__)
98# define ROTATE(a,n) ({ register unsigned int ret; \ 96# define ROTATE(a,n) ({ register unsigned int ret; \
99 asm ( \ 97 asm ( \