about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-96/math_ldbl.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-12-19 05:07:31 +0000
committerUlrich Drepper <drepper@redhat.com>2000-12-19 05:07:31 +0000
commitcc46d0cfcf056cd46a99b6c9051291da31764c58 (patch)
tree924077ae6d01b45c0b8363d666e806268cf7d382 /sysdeps/ieee754/ldbl-96/math_ldbl.h
parentaa9e3c3940003135ee8d3b2e728b627930eb65b1 (diff)
downloadglibc-cc46d0cfcf056cd46a99b6c9051291da31764c58.tar.gz
glibc-cc46d0cfcf056cd46a99b6c9051291da31764c58.tar.xz
glibc-cc46d0cfcf056cd46a99b6c9051291da31764c58.zip
Update.
	* math/test-misc.c: Add more tests for nextafter.
	* sysdeps/i386/fpu/s_nextafterl.c: Handle decrement for x<0 correctly.
	* sysdeps/ieee754/ldbl-96/math_ldbl.h
	(ieee_long_double_shape_type): Make sign_exponent element signed.
Diffstat (limited to 'sysdeps/ieee754/ldbl-96/math_ldbl.h')
-rw-r--r--sysdeps/ieee754/ldbl-96/math_ldbl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ieee754/ldbl-96/math_ldbl.h b/sysdeps/ieee754/ldbl-96/math_ldbl.h
index dccc4a1240..1a9b027035 100644
--- a/sysdeps/ieee754/ldbl-96/math_ldbl.h
+++ b/sysdeps/ieee754/ldbl-96/math_ldbl.h
@@ -13,7 +13,7 @@ typedef union
   struct
   {
     unsigned int sign_exponent:16;
-    unsigned int empty:16;
+    int empty:16;
     u_int32_t msw;
     u_int32_t lsw;
   } parts;
@@ -30,7 +30,7 @@ typedef union
   {
     u_int32_t lsw;
     u_int32_t msw;
-    unsigned int sign_exponent:16;
+    int sign_exponent:16;
     unsigned int empty:16;
   } parts;
 } ieee_long_double_shape_type;