diff options
Diffstat (limited to 'sysdeps/ia64')
-rw-r--r-- | sysdeps/ia64/fpu/math_ldbl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ia64/fpu/math_ldbl.h b/sysdeps/ia64/fpu/math_ldbl.h index e329b70cf7..475ca795fa 100644 --- a/sysdeps/ia64/fpu/math_ldbl.h +++ b/sysdeps/ia64/fpu/math_ldbl.h @@ -13,7 +13,7 @@ typedef union struct { unsigned int empty0:32; - unsigned int sign_exponent:16; + int sign_exponent:16; unsigned int empty1:16; u_int32_t msw; u_int32_t lsw; @@ -31,7 +31,7 @@ typedef union { u_int32_t lsw; u_int32_t msw; - unsigned int sign_exponent:16; + int sign_exponent:16; unsigned int empty1:16; unsigned int empty0:32; } parts; |