diff options
author | Roland McGrath <roland@hack.frob.com> | 2011-06-10 12:45:09 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2011-06-10 22:44:20 -0700 |
commit | 5615eaf26469f20c2d8c3be5770e12564a1edfff (patch) | |
tree | cf9eb7a5797cd7c9dd4680b0463859dcd8376328 /stdio-common | |
parent | b68e08db76547937ea6e1902e87a5ea98c906f0c (diff) | |
download | glibc-5615eaf26469f20c2d8c3be5770e12564a1edfff.tar.gz glibc-5615eaf26469f20c2d8c3be5770e12564a1edfff.tar.xz glibc-5615eaf26469f20c2d8c3be5770e12564a1edfff.zip |
Quash some new warnings from GCC 4.6.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/printf_fp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/stdio-common/printf_fp.c b/stdio-common/printf_fp.c index e9ff1684ce..0a611470bc 100644 --- a/stdio-common/printf_fp.c +++ b/stdio-common/printf_fp.c @@ -640,7 +640,6 @@ ___printf_fp (FILE *fp, int exp10 = 0; int explog = LDBL_MAX_10_EXP_LOG; const struct mp_power *powers = &_fpioconst_pow10[explog + 1]; - mp_size_t used_limbs = fracsize - 1; /* Now shift the input value to its right place. */ cy = __mpn_lshift (frac, fp_input, fracsize, to_shift); @@ -762,7 +761,6 @@ ___printf_fp (FILE *fp, fracsize = tmpsize - (i - 1); } } - used_limbs = fracsize - 1; } } --explog; |