summaryrefslogtreecommitdiffstats
path: root/crypto/md32_common.h
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2012-11-28 13:12:09 +0000
committerAndy Polyakov <appro@openssl.org>2012-11-28 13:12:09 +0000
commitad00a52f2df2047906dab0e358d539be2dc01bb5 (patch)
tree2189be546ec330fc7f9b943f5cb18030463ec55b /crypto/md32_common.h
parente08c7f15b432f31ebb60ef0c7004a5dff4451416 (diff)
Intel compiler support update from HEAD.
Diffstat (limited to 'crypto/md32_common.h')
-rw-r--r--crypto/md32_common.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/md32_common.h b/crypto/md32_common.h
index bb7381952a..d7f7a26e70 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)