about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-12-04 21:19:17 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-12-04 21:19:17 +0000
commitb37984ad36f2617fff1eb499b0aba4234b30a029 (patch)
tree3991cae507c8a68ca2c6953c1b60830d4c4a4435 /sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c
parentc8df52eccfa2d1ace13d887aa6bdab1178c1edb4 (diff)
downloadglibc-b37984ad36f2617fff1eb499b0aba4234b30a029.tar.gz
glibc-b37984ad36f2617fff1eb499b0aba4234b30a029.tar.xz
glibc-b37984ad36f2617fff1eb499b0aba4234b30a029.zip
Fix ldbl-128ibm "set but not used" warnings.
Diffstat (limited to 'sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c')
-rw-r--r--sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c b/sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c
index 5352de9453..a3d141de3d 100644
--- a/sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c
+++ b/sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c
@@ -200,7 +200,8 @@ int32_t __ieee754_rem_pio2l(long double x, long double *y)
   double tx[8];
   int exp;
   int64_t n, ix, hx, ixd;
-  u_int64_t lx, lxd;
+  u_int64_t lx __attribute__ ((unused));
+  u_int64_t lxd;
 
   GET_LDOUBLE_WORDS64 (hx, lx, x);
   ix = hx & 0x7fffffffffffffffLL;