summaryrefslogtreecommitdiff
path: root/lib/libcrypto/aes/aes_x86core.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2014-04-17 21:17:13 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2014-04-17 21:17:13 +0000
commiteced9cb2795ae2ffb49d90a849250c9d83753b9d (patch)
tree2a55bab31719b1b2a63b5fbb5c9f1ed1ee35b8c2 /lib/libcrypto/aes/aes_x86core.c
parentc285bade3db509c4f886d99db0e98daec914fba5 (diff)
Get rid of MS Visual C compiler and Intel C compiler specific defines.
Diffstat (limited to 'lib/libcrypto/aes/aes_x86core.c')
-rw-r--r--lib/libcrypto/aes/aes_x86core.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libcrypto/aes/aes_x86core.c b/lib/libcrypto/aes/aes_x86core.c
index c5d17b31277..295ea22bb46 100644
--- a/lib/libcrypto/aes/aes_x86core.c
+++ b/lib/libcrypto/aes/aes_x86core.c
@@ -91,9 +91,7 @@ typedef unsigned long long u64;
#endif
#undef ROTATE
-#if defined(_MSC_VER) || defined(__ICC)
-# define ROTATE(a,n) _lrotl(a,n)
-#elif defined(__GNUC__) && __GNUC__>=2
+#if defined(__GNUC__) && __GNUC__>=2
# if defined(__i386) || defined(__i386__) || defined(__x86_64) || defined(__x86_64__)
# define ROTATE(a,n) ({ register unsigned int ret; \
asm ( \