aboutsummaryrefslogtreecommitdiff
path: root/crypto/sha/sha512.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2007-08-23 11:59:53 +0000
committerAndy Polyakov <appro@openssl.org>2007-08-23 11:59:53 +0000
commitdc0fcb98dffb20f6ee4cd6a8ee588c9f64373a99 (patch)
tree17b96c379f7fac63c8e7af9563a1725aa7f53238 /crypto/sha/sha512.c
parentd24a9c8f5a087357e5cfcde9f1de52fda9b5321f (diff)
downloadopenssl-dc0fcb98dffb20f6ee4cd6a8ee588c9f64373a99.zip
openssl-dc0fcb98dffb20f6ee4cd6a8ee588c9f64373a99.tar.gz
openssl-dc0fcb98dffb20f6ee4cd6a8ee588c9f64373a99.tar.bz2
Workaround MSVC6 compiler bug.
Diffstat (limited to 'crypto/sha/sha512.c')
-rw-r--r--crypto/sha/sha512.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/sha/sha512.c b/crypto/sha/sha512.c
index 24fc2ef..c58b843 100644
--- a/crypto/sha/sha512.c
+++ b/crypto/sha/sha512.c
@@ -364,6 +364,9 @@ static const SHA_LONG64 K512[80] = {
}
# endif
# define PULL64(x) __pull64be(&(x))
+# if _MSC_VER<=1200
+# pragma inline_depth(0)
+# endif
# endif
# endif
#endif