(__ieee754_sqrt): Remove unused variables b and n.

This commit is contained in:
Andreas Jaeger 2001-04-19 19:14:52 +00:00
parent 9bab980687
commit 7ea88fb414

View File

@ -52,8 +52,8 @@ double __ieee754_sqrt(double x) {
rt3 = 3.12523626554518656309172508769531E-01; rt3 = 3.12523626554518656309172508769531E-01;
static const double big = 134217728.0, big1 = 134217729.0; static const double big = 134217728.0, big1 = 134217729.0;
double y,t,del,res,res1,hy,z,zz,p,hx,tx,ty,s; double y,t,del,res,res1,hy,z,zz,p,hx,tx,ty,s;
mynumber a,b,c={{0,0}}; mynumber a,c={{0,0}};
int4 n,k; int4 k;
a.x=x; a.x=x;
k=a.i[HIGH_HALF]; k=a.i[HIGH_HALF];