speed up division

This commit is contained in:
Jeff Wang 2019-05-01 00:59:52 -04:00
parent fcf16153f6
commit 4b87ad27c8

View File

@ -756,7 +756,7 @@ void div_decn(dec80* acc, const dec80* x){
}
copy_decn(acc, &tmp);
//do newton raphson iterations
for (i = 0; i < DEC80_NUM_LSU + 4; i++){ //just fix number of iterations for now
for (i = 0; i < DEC80_NUM_LSU; i++){ //just fix number of iterations for now
#ifdef DEBUG_DIV
extern char Buf[80];
decn_to_str_complete(Buf, &tmp);