diff options
author | peter <peter@FreeBSD.org> | 2003-05-08 00:02:03 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-05-08 00:02:03 +0000 |
commit | b4ea6939e7cf7e6c17dc5a4ab0b629c7d989c881 (patch) | |
tree | 03398cbcbec2ff8a2e661ee5ae5cadc1679f8bee | |
parent | 8527540b900b4748b9a6d0ed5efa28204eb9e552 (diff) | |
download | FreeBSD-src-b4ea6939e7cf7e6c17dc5a4ab0b629c7d989c881.zip FreeBSD-src-b4ea6939e7cf7e6c17dc5a4ab0b629c7d989c881.tar.gz |
Like ia64, amd64 has got a 16 byte sized and aligned 'long double'.
Obtained from: re (blanket amd64)
-rw-r--r-- | lib/libc/amd64/_fpmath.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/amd64/_fpmath.h b/lib/libc/amd64/_fpmath.h index 35fe376..d8b60f2 100644 --- a/lib/libc/amd64/_fpmath.h +++ b/lib/libc/amd64/_fpmath.h @@ -33,7 +33,8 @@ union IEEEl2bits { unsigned int manh :32; unsigned int exp :15; unsigned int sign :1; - unsigned int junk :16; + unsigned int junkl :16; + unsigned int junkh :32; } bits; }; |