diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-12-04 21:19:17 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-12-04 21:19:17 +0000 |
commit | b37984ad36f2617fff1eb499b0aba4234b30a029 (patch) | |
tree | 3991cae507c8a68ca2c6953c1b60830d4c4a4435 /sysdeps/ieee754/ldbl-128ibm/e_atanhl.c | |
parent | c8df52eccfa2d1ace13d887aa6bdab1178c1edb4 (diff) | |
download | glibc-b37984ad36f2617fff1eb499b0aba4234b30a029.zip glibc-b37984ad36f2617fff1eb499b0aba4234b30a029.tar.gz glibc-b37984ad36f2617fff1eb499b0aba4234b30a029.tar.bz2 |
Fix ldbl-128ibm "set but not used" warnings.
Diffstat (limited to 'sysdeps/ieee754/ldbl-128ibm/e_atanhl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128ibm/e_atanhl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-128ibm/e_atanhl.c b/sysdeps/ieee754/ldbl-128ibm/e_atanhl.c index 075855b..f35182f 100644 --- a/sysdeps/ieee754/ldbl-128ibm/e_atanhl.c +++ b/sysdeps/ieee754/ldbl-128ibm/e_atanhl.c @@ -40,7 +40,7 @@ __ieee754_atanhl(long double x) { long double t; int64_t hx,ix; - u_int64_t lx; + u_int64_t lx __attribute__ ((unused)); GET_LDOUBLE_WORDS64(hx,lx,x); ix = hx&0x7fffffffffffffffLL; if (ix >= 0x3ff0000000000000LL) { /* |x|>=1 */ |