mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
libdecnumber: remove unused variable
Fixes: libdecnumber/dpd/decimal64.c:617:8: warning: variable 'n' set but not used [-Wunused-but-set-variable] libdecnumber/ChangeLog: * dpd/decimal64.c (decDigitsToDPD): Remove unused variable.
This commit is contained in:
parent
e1d1842b54
commit
8a79685989
@ -614,7 +614,6 @@ static const uInt multies[]={131073, 26215, 5243, 1049, 210};
|
||||
#endif
|
||||
void decDigitsToDPD(const decNumber *dn, uInt *targ, Int shift) {
|
||||
Int cut; /* work */
|
||||
Int n; /* output bunch counter */
|
||||
Int digits=dn->digits; /* digit countdown */
|
||||
uInt dpd; /* densely packed decimal value */
|
||||
uInt bin; /* binary value 0-999 */
|
||||
@ -673,7 +672,7 @@ void decDigitsToDPD(const decNumber *dn, uInt *targ, Int shift) {
|
||||
bin=0; /* [keep compiler quiet] */
|
||||
#endif
|
||||
|
||||
for(n=0; digits>0; n++) { /* each output bunch */
|
||||
for(; digits>0;) { /* each output bunch */
|
||||
#if DECDPUN==3 /* fast path, 3-at-a-time */
|
||||
bin=*inu; /* 3 digits ready for convert */
|
||||
digits-=3; /* [may go negative] */
|
||||
|
Loading…
Reference in New Issue
Block a user