diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2013-05-06 10:23:02 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2013-05-06 10:23:02 +0200 |
commit | e5123d087ed24066c03c97c92a15d255c8d318dd (patch) | |
tree | e05b2f2fcb768975dd4c02f9879f967e78f0832d /libgcc/fp-bit.h | |
parent | 701e2f0a76da581d75fa3adac925d58aff7a1290 (diff) | |
download | gcc-e5123d087ed24066c03c97c92a15d255c8d318dd.zip gcc-e5123d087ed24066c03c97c92a15d255c8d318dd.tar.gz gcc-e5123d087ed24066c03c97c92a15d255c8d318dd.tar.bz2 |
fp-bit.c (unpack_d, pack_d): Properly preserve and restore a NaN's payload.
libgcc/
* fp-bit.c (unpack_d, pack_d): Properly preserve and restore a
NaN's payload.
From-SVN: r198622
Diffstat (limited to 'libgcc/fp-bit.h')
-rw-r--r-- | libgcc/fp-bit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgcc/fp-bit.h b/libgcc/fp-bit.h index 2ac504a..b6fe9f7 100644 --- a/libgcc/fp-bit.h +++ b/libgcc/fp-bit.h @@ -297,7 +297,7 @@ typedef unsigned int UTItype __attribute__ ((mode (TI))); /* numeric parameters */ /* F_D_BITOFF is the number of bits offset between the MSB of the mantissa of a float and of a double. Assumes there are only two float types. - (double::FRAC_BITS+double::NGARDS-(float::FRAC_BITS-float::NGARDS)) + (double::FRAC_BITS+double::NGARDS-(float::FRAC_BITS+float::NGARDS)) */ #define F_D_BITOFF (52+8-(23+7)) |