summaryrefslogtreecommitdiff
path: root/lib/libcrypto/bn/bn_div.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2014-04-17 20:29:20 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2014-04-17 20:29:20 +0000
commit35eb37b8aada2c3b0dd2282f98e4593aaa5c384d (patch)
tree2bc2c09aa868b1d9e598e0b00a7458c877a85743 /lib/libcrypto/bn/bn_div.c
parentf8ae9726f1fef3f5f5990accd7be2fae23866bce (diff)
Nuke BN_DEBUG_LEVITTE
Diffstat (limited to 'lib/libcrypto/bn/bn_div.c')
-rw-r--r--lib/libcrypto/bn/bn_div.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/libcrypto/bn/bn_div.c b/lib/libcrypto/bn/bn_div.c
index 7b2403185e6..7817c345f05 100644
--- a/lib/libcrypto/bn/bn_div.c
+++ b/lib/libcrypto/bn/bn_div.c
@@ -337,11 +337,6 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
q=(BN_ULONG)(((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0);
#else
q=bn_div_words(n0,n1,d0);
-#ifdef BN_DEBUG_LEVITTE
- fprintf(stderr,"DEBUG: bn_div_words(0x%08X,0x%08X,0x%08\
-X) -> 0x%08X\n",
- n0, n1, d0, q);
-#endif
#endif
#ifndef REMAINDER_IS_ALREADY_CALCULATED
@@ -366,11 +361,6 @@ X) -> 0x%08X\n",
BN_ULONG t2l,t2h;
q=bn_div_words(n0,n1,d0);
-#ifdef BN_DEBUG_LEVITTE
- fprintf(stderr,"DEBUG: bn_div_words(0x%08X,0x%08X,0x%08\
-X) -> 0x%08X\n",
- n0, n1, d0, q);
-#endif
#ifndef REMAINDER_IS_ALREADY_CALCULATED
rem=(n1-q*d0)&BN_MASK2;
#endif