diff options
author | Andy Polyakov <appro@openssl.org> | 2007-08-23 13:59:53 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2007-08-23 13:59:53 +0200 |
commit | dc0fcb98dffb20f6ee4cd6a8ee588c9f64373a99 (patch) | |
tree | 17b96c379f7fac63c8e7af9563a1725aa7f53238 /crypto/sha | |
parent | Docs and usage messages for RFC4507bis support. (diff) | |
download | openssl-dc0fcb98dffb20f6ee4cd6a8ee588c9f64373a99.tar.xz openssl-dc0fcb98dffb20f6ee4cd6a8ee588c9f64373a99.zip |
Workaround MSVC6 compiler bug.
Diffstat (limited to 'crypto/sha')
-rw-r--r-- | crypto/sha/sha512.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/sha/sha512.c b/crypto/sha/sha512.c index 24fc2ef03d..c58b843ad0 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 |