mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-06 14:10:30 +08:00
Fix set-but-not-used warnings in ldbl-128 nearbyintl, rintl.
This commit is contained in:
parent
f59cba71d8
commit
cf9a5d1861
@ -1,3 +1,9 @@
|
||||
2012-11-20 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Mark
|
||||
variable I1 with __attribute__ ((unused)).
|
||||
* sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
|
||||
|
||||
2012-11-19 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* stdio-common/_itowa.c (_itowa) [BITS_PER_MP_LIMB == 64]: Declare
|
||||
|
@ -37,7 +37,7 @@ long double __nearbyintl(long double x)
|
||||
{
|
||||
fenv_t env;
|
||||
int64_t i0,j0,sx;
|
||||
u_int64_t i1;
|
||||
u_int64_t i1 __attribute__ ((unused));
|
||||
long double w,t;
|
||||
GET_LDOUBLE_WORDS64(i0,i1,x);
|
||||
sx = (((u_int64_t)i0)>>63);
|
||||
|
@ -39,7 +39,7 @@ TWO112[2]={
|
||||
long double __rintl(long double x)
|
||||
{
|
||||
int64_t i0,j0,sx;
|
||||
u_int64_t i1;
|
||||
u_int64_t i1 __attribute__ ((unused));
|
||||
long double w,t;
|
||||
GET_LDOUBLE_WORDS64(i0,i1,x);
|
||||
sx = (((u_int64_t)i0)>>63);
|
||||
|
Loading…
x
Reference in New Issue
Block a user