diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-17 21:17:13 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-17 21:17:13 +0000 |
commit | eced9cb2795ae2ffb49d90a849250c9d83753b9d (patch) | |
tree | 2a55bab31719b1b2a63b5fbb5c9f1ed1ee35b8c2 /lib/libcrypto/aes/aes_x86core.c | |
parent | c285bade3db509c4f886d99db0e98daec914fba5 (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.c | 4 |
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 ( \ |