This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.
Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
I get:
../sysdeps/ieee754/dbl-64/e_sqrt.c:55: warning: unused variable `b'
../sysdeps/ieee754/dbl-64/e_sqrt.c:56: warning: unused variable `n'
Ok to commit?
Andreas
2001-04-19 Andreas Jaeger <aj@suse.de>
* sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Remove unused
variables b and n.
============================================================
Index: sysdeps/ieee754/dbl-64/e_sqrt.c
--- sysdeps/ieee754/dbl-64/e_sqrt.c 2001/04/02 11:25:41 1.4
+++ sysdeps/ieee754/dbl-64/e_sqrt.c 2001/04/19 13:34:22
@@ -52,8 +52,8 @@
rt3 = 3.12523626554518656309172508769531E-01;
static const double big = 134217728.0, big1 = 134217729.0;
double y,t,del,res,res1,hy,z,zz,p,hx,tx,ty,s;
- mynumber a,b,c={{0,0}};
- int4 n,k;
+ mynumber a,c={{0,0}};
+ int4 k;
a.x=x;
k=a.i[HIGH_HALF];
--
Andreas Jaeger
SuSE Labs aj@suse.de
private aj@arthur.inka.de
http://www.suse.de/~aj
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |