Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2018-08-08 11:41:58 +0300
committerCorinna Vinschen <corinna@vinschen.de>2018-08-08 11:50:19 +0300
commit2d87d95f12bbbb8bff611c8a19b943b9ebedb1fd (patch)
treef59aa2e3271c3cf7baa629e1cedc567ef46526de /newlib/libm/common/sqrtl.c
parent5ace9004d9b982ba8887df41139295792c130020 (diff)
newlib: fix various gcc warnings
* unused variables * potentially used uninitialized * suggested bracketing * misleading indentation Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib/libm/common/sqrtl.c')
-rw-r--r--newlib/libm/common/sqrtl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libm/common/sqrtl.c b/newlib/libm/common/sqrtl.c
index 8cd717e19..9976f35e7 100644
--- a/newlib/libm/common/sqrtl.c
+++ b/newlib/libm/common/sqrtl.c
@@ -123,7 +123,7 @@ long double
sqrtl (long double x)
{
union ieee_ext_u ux = { .extu_ld = x, };
- int k, r;
+ int k;
long double lo, xn;
/* If x = NaN, then sqrt(x) = NaN. */