diff options
author | das <das@FreeBSD.org> | 2011-10-16 05:36:23 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2011-10-16 05:36:23 +0000 |
commit | 8e252b8a5d00ca227cb9ae1dac9c82724ed9cc24 (patch) | |
tree | 3df15138d375046ed8e861eb4a1335c405a5c47a | |
parent | 0b7d8050e61b989ccbc399e0d0fa6a001fe26899 (diff) | |
download | FreeBSD-src-8e252b8a5d00ca227cb9ae1dac9c82724ed9cc24.zip FreeBSD-src-8e252b8a5d00ca227cb9ae1dac9c82724ed9cc24.tar.gz |
Remove an unused variable.
-rw-r--r-- | lib/msun/src/e_log10f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/e_log10f.c b/lib/msun/src/e_log10f.c index 4665898..c876594 100644 --- a/lib/msun/src/e_log10f.c +++ b/lib/msun/src/e_log10f.c @@ -32,7 +32,7 @@ static const float zero = 0.0; float __ieee754_log10f(float x) { - float f,hfsq,hi,lo,r,y,y2; + float f,hfsq,hi,lo,r,y; int32_t i,k,hx; GET_FLOAT_WORD(hx,x); |