From: Andy Polyakov Date: Thu, 2 Feb 2012 07:46:05 +0000 (+0000) Subject: bn_nist.c: make new optimized code dependent on BN_LLONG. X-Git-Tag: master-post-reformat~1962 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0208ab2e3fd0eb7781cbe1c1b906df610261a08c;p=oweals%2Fopenssl.git bn_nist.c: make new optimized code dependent on BN_LLONG. --- diff --git a/crypto/bn/bn_nist.c b/crypto/bn/bn_nist.c index 3e3caae08b..9f12f06fa5 100644 --- a/crypto/bn/bn_nist.c +++ b/crypto/bn/bn_nist.c @@ -364,7 +364,7 @@ static void nist_cp_bn(BN_ULONG *buf, const BN_ULONG *a, int top) #define bn_32_set_0(to, n) (to)[n] = (BN_ULONG)0; # if defined(_WIN32) && !defined(__GNUC__) # define NIST_INT64 __int64 -# else +# elif defined(BN_LLONG) # define NIST_INT64 long long # endif #endif /* BN_BITS2 != 64 */