word.digits are always initialized before use in the Taylor series loop,

but this is more readable.
This commit is contained in:
Stefan Krah 2012-06-01 10:58:16 +02:00
parent 2b6b73e7e1
commit 67ee1d05dd
1 changed files with 1 additions and 1 deletions

View File

@ -3989,7 +3989,7 @@ _mpd_qexp(mpd_t *result, const mpd_t *a, const mpd_context_t *ctx,
mpd_context_t workctx;
MPD_NEW_STATIC(tmp,0,0,0,0);
MPD_NEW_STATIC(sum,0,0,0,0);
MPD_NEW_CONST(word,0,0,0,1,1,1);
MPD_NEW_CONST(word,0,0,1,1,1,1);
mpd_ssize_t j, n, t;
assert(!mpd_isspecial(a));