From 501da53cead3de0021d1de57d930f092a2f3e05a Mon Sep 17 00:00:00 2001 From: mdw Date: Sat, 13 Nov 1999 01:57:31 +0000 Subject: [PATCH] Remove stray debugging code. --- mpx.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mpx.c b/mpx.c index b8bc8bf..b6d765d 100644 --- a/mpx.c +++ b/mpx.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: mpx.c,v 1.2 1999/11/13 01:50:59 mdw Exp $ + * $Id: mpx.c,v 1.3 1999/11/13 01:57:31 mdw Exp $ * * Low-level multiprecision arithmetic * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: mpx.c,v $ + * Revision 1.3 1999/11/13 01:57:31 mdw + * Remove stray debugging code. + * * Revision 1.2 1999/11/13 01:50:59 mdw * Multiprecision routines finished and tested. * @@ -572,7 +575,6 @@ void mpx_usqr(mpw *dv, mpw *dvl, const mpw *av, const mpw *avl) /* --- Work out the square at this point in the proceedings --- */ { - mpw d = *dvv; mpd x = (mpd)a * (mpd)a + *dvv; *dvv++ = MPW(x); c = MPW(x >> MPW_BITS); @@ -582,7 +584,6 @@ void mpx_usqr(mpw *dv, mpw *dvl, const mpw *av, const mpw *avl) avv++; while (dvv < dvl && avv < avl) { - mpw aa = *avv; mpd x = (mpd)a * (mpd)*avv++; mpd y = ((x << 1) & MPW_MAX) + c + *dvv; c = (x >> (MPW_BITS - 1)) + (y >> MPW_BITS); -- 2.11.0