summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/msun/src/s_exp2.c2
-rw-r--r--lib/msun/src/s_exp2f.c2
-rw-r--r--lib/msun/src/s_trunc.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/msun/src/s_exp2.c b/lib/msun/src/s_exp2.c
index c46750f..485b4e3 100644
--- a/lib/msun/src/s_exp2.c
+++ b/lib/msun/src/s_exp2.c
@@ -341,7 +341,7 @@ double
exp2(double x)
{
double r, t, twopk, twopkp1000, z;
- uint32_t hx, hr, ix, lx, i0;
+ uint32_t hx, ix, lx, i0;
int k;
/* Filter out exceptional cases. */
diff --git a/lib/msun/src/s_exp2f.c b/lib/msun/src/s_exp2f.c
index 43da2f6..0a97bf6 100644
--- a/lib/msun/src/s_exp2f.c
+++ b/lib/msun/src/s_exp2f.c
@@ -95,7 +95,7 @@ exp2f(float x)
{
double tv, twopk, u, z;
float t;
- uint32_t hx, htv, ix, i0;
+ uint32_t hx, ix, i0;
int32_t k;
/* Filter out exceptional cases. */
diff --git a/lib/msun/src/s_trunc.c b/lib/msun/src/s_trunc.c
index 86e97bd..63a6753 100644
--- a/lib/msun/src/s_trunc.c
+++ b/lib/msun/src/s_trunc.c
@@ -33,7 +33,7 @@ double
trunc(double x)
{
int32_t i0,i1,j0;
- u_int32_t i,j;
+ u_int32_t i;
EXTRACT_WORDS(i0,i1,x);
j0 = ((i0>>20)&0x7ff)-0x3ff;
if(j0<20) {
OpenPOWER on IntegriCloud