diff options
author | Bodo Möller <bodo@openssl.org> | 1999-06-23 14:18:31 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-06-23 14:18:31 +0200 |
commit | 946cbf67afc5a76394008bcad9efa67deeefb172 (patch) | |
tree | f4589cfc72f197cecd88e98424ba7734dc9e937d /crypto/md32_common.h | |
parent | New function PKCS7_signatureVerify to allow the signing certificate to (diff) | |
download | openssl-946cbf67afc5a76394008bcad9efa67deeefb172.tar.xz openssl-946cbf67afc5a76394008bcad9efa67deeefb172.zip |
Don't use inline assembler when configured for "no-asm".
Diffstat (limited to 'crypto/md32_common.h')
-rw-r--r-- | crypto/md32_common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/md32_common.h b/crypto/md32_common.h index e88d78c27b..2b91f9eef2 100644 --- a/crypto/md32_common.h +++ b/crypto/md32_common.h @@ -179,7 +179,7 @@ #ifndef PEDANTIC # if defined(_MSC_VER) # define ROTATE(a,n) _lrotl(a,n) -# elif defined(__GNUC__) && __GNUC__>=2 +# elif defined(__GNUC__) && __GNUC__>=2 && !defined(NO_ASM) /* * Some GNU C inline assembler templates. Note that these are * rotates by *constant* number of bits! But that's exactly @@ -211,7 +211,7 @@ * Engage compiler specific "fetch in reverse byte order" * intrinsic function if available. */ -# if defined(__GNUC__) && __GNUC__>=2 +# if defined(__GNUC__) && __GNUC__>=2 && !defined(NO_ASM) /* some GNU C inline assembler templates by <appro@fy.chalmers.se> */ # if defined(__i386) && !defined(I386_ONLY) # define BE_FETCH32(a) ({ register unsigned int l=(a);\ |