From: Andy Polyakov Date: Sun, 24 May 2015 20:51:12 +0000 (+0200) Subject: md32_common.h: backport ICC fix. X-Git-Tag: OpenSSL_1_0_1n~41 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=38b7073328fc0f2713d377472de8d189ae42eda1;p=oweals%2Fopenssl.git md32_common.h: backport ICC fix. RT#3843 Reviewed-by: Matt Caswell --- diff --git a/crypto/md32_common.h b/crypto/md32_common.h index c1efb45f1c..1823833419 100644 --- a/crypto/md32_common.h +++ b/crypto/md32_common.h @@ -142,8 +142,10 @@ */ #undef ROTATE #ifndef PEDANTIC -# if defined(_MSC_VER) || defined(__ICC) +# if defined(_MSC_VER) # define ROTATE(a,n) _lrotl(a,n) +# elif defined(__ICC) +# define ROTATE(a,n) _rotl(a,n) # elif defined(__MWERKS__) # if defined(__POWERPC__) # define ROTATE(a,n) __rlwinm(a,n,0,31)