diff options
author | tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-05-06 08:23:02 +0000 |
---|---|---|
committer | tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-05-06 08:23:02 +0000 |
commit | dfa9a36a5ba55857f0d71824c85851585655da2c (patch) | |
tree | e05b2f2fcb768975dd4c02f9879f967e78f0832d /libgcc/fp-bit.h | |
parent | 9e849aff13d0ac32c90f028c0ae73024f6a00a65 (diff) | |
download | gcc-dfa9a36a5ba55857f0d71824c85851585655da2c.tar.gz |
libgcc/
* fp-bit.c (unpack_d, pack_d): Properly preserve and restore a
NaN's payload.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@198622 138bc75d-0d04-0410-961f-82ee72b054a4
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 2ac504a56e5..b6fe9f7a288 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)) |