From: Andy Polyakov Date: Thu, 2 Feb 2012 07:46:19 +0000 (+0000) Subject: bn_nist.c: make new optimized code dependent on BN_LLONG [from HEAD]. X-Git-Tag: OpenSSL_1_0_1-beta3~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d06f047b04dbdcd151efc620bf91253f0d70117e;p=openssl bn_nist.c: make new optimized code dependent on BN_LLONG [from HEAD]. --- diff --git a/crypto/bn/bn_nist.c b/crypto/bn/bn_nist.c index 880989dd5f..43caee4770 100644 --- a/crypto/bn/bn_nist.c +++ b/crypto/bn/bn_nist.c @@ -341,7 +341,7 @@ static void nist_cp_bn(BN_ULONG *buf, 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 */