From daf3a2f5099f4c07a58cf314a8b6ddd65c8dca52 Mon Sep 17 00:00:00 2001 From: das Date: Sun, 18 Jan 2004 07:57:02 +0000 Subject: Define LDBL_MANH_SIZE and LDBL_MANL_SIZE to be the sizes of the high and low words of the mantissa in bits, respectively. --- lib/libc/sparc64/_fpmath.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/libc/sparc64/_fpmath.h') diff --git a/lib/libc/sparc64/_fpmath.h b/lib/libc/sparc64/_fpmath.h index 69a4b03..ba8c403 100644 --- a/lib/libc/sparc64/_fpmath.h +++ b/lib/libc/sparc64/_fpmath.h @@ -40,6 +40,9 @@ union IEEEl2bits { #define mask_nbit_l(u) ((void)0) #define LDBL_IMPLICIT_NBIT +#define LDBL_MANH_SIZE 48 +#define LDBL_MANL_SIZE 64 + #define LDBL_TO_ARRAY32(u, a) do { \ (a)[0] = (uint32_t)(u).bits.manl; \ (a)[1] = (uint32_t)((u).bits.manl >> 32); \ -- cgit v1.1