summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_div.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2001-01-23 16:26:15 +0000
committerUlf Möller <ulf@openssl.org>2001-01-23 16:26:15 +0000
commit75802000c8904fa63c96a44294e7afaaf0852193 (patch)
tree14533ed7d1da5cb52dbc0a961de43fd0a0a9124a /crypto/bn/bn_div.c
parent325ae88efbaace864580ffaa42a7771f7cfdce32 (diff)
There is no C version of bn_div_3_words
Diffstat (limited to 'crypto/bn/bn_div.c')
-rw-r--r--crypto/bn/bn_div.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c
index 64b84ac1a7..602276d1fa 100644
--- a/crypto/bn/bn_div.c
+++ b/crypto/bn/bn_div.c
@@ -248,7 +248,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
for (i=0; i<loop-1; i++)
{
BN_ULONG q,l0;
-#ifdef BN_DIV3W
+#if defined(BN_DIV3W) && !defined(NO_ASM)
q=bn_div_3_words(wnump,d1,d0);
#else
BN_ULONG n0,n1,rem=0;