From: Andy Polyakov Date: Tue, 15 Feb 2000 17:20:52 +0000 (+0000) Subject: New NO_INLINE_ASM macro. Primary target for the moment is Solaris x86 X-Git-Tag: OpenSSL_0_9_5beta1~66 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=89cee61b45725a57cb45defca4ee014a70790fe1;p=oweals%2Fopenssl.git New NO_INLINE_ASM macro. Primary target for the moment is Solaris x86 which can't stand GNU C assembler templates. --- diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c index 31062b7db2..07af1d3b44 100644 --- a/crypto/bn/bn_div.c +++ b/crypto/bn/bn_div.c @@ -126,7 +126,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, #else -#if !defined(NO_ASM) && !defined(PEDANTIC) && !defined(BN_DIV3W) +#if !defined(NO_ASM) && !defined(NO_INLINE_ASM) && !defined(PEDANTIC) && !defined(BN_DIV3W) # if defined(__GNUC__) && __GNUC__>=2 # if defined(__i386) /* diff --git a/crypto/bn/bn_lcl.h b/crypto/bn/bn_lcl.h index fa347ee6f8..fc0b5b762b 100644 --- a/crypto/bn/bn_lcl.h +++ b/crypto/bn/bn_lcl.h @@ -86,7 +86,7 @@ extern "C" { #endif #endif -#if !defined(NO_ASM) && !defined(PEDANTIC) +#if !defined(NO_ASM) && !defined(NO_INLINE_ASM) && !defined(PEDANTIC) /* * BN_UMULT_HIGH section. * diff --git a/crypto/md32_common.h b/crypto/md32_common.h index 9a6a27512f..d7c0084c4e 100644 --- a/crypto/md32_common.h +++ b/crypto/md32_common.h @@ -190,7 +190,7 @@ # else # define ROTATE(a,n) __rol(a,n) # endif -# elif defined(__GNUC__) && __GNUC__>=2 && !defined(NO_ASM) +# elif defined(__GNUC__) && __GNUC__>=2 && !defined(NO_ASM) && !defined(NO_INLINE_ASM) /* * Some GNU C inline assembler templates. Note that these are * rotates by *constant* number of bits! But that's exactly @@ -222,7 +222,7 @@ * Engage compiler specific "fetch in reverse byte order" * intrinsic function if available. */ -# if defined(__GNUC__) && __GNUC__>=2 && !defined(NO_ASM) +# if defined(__GNUC__) && __GNUC__>=2 && !defined(NO_ASM) && !defined(NO_INLINE_ASM) /* some GNU C inline assembler templates by */ # if defined(__i386) && !defined(I386_ONLY) # define BE_FETCH32(a) ({ register unsigned int l=(a);\