diff options
author | tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-05-06 08:22:48 +0000 |
---|---|---|
committer | tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-05-06 08:22:48 +0000 |
commit | 9e849aff13d0ac32c90f028c0ae73024f6a00a65 (patch) | |
tree | 937c9566ad2208dbbcdfa1835ad4af9d988277a4 /libgcc/fp-bit.h | |
parent | a6245fde71802d83d3cd80233bd0fdd719ca16f5 (diff) | |
download | gcc-9e849aff13d0ac32c90f028c0ae73024f6a00a65.tar.gz |
libgcc/
* fp-bit.h [FLOAT] (QUIET_NAN): Correct value.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@198621 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 d4f0d0ba3ff..2ac504a56e5 100644 --- a/libgcc/fp-bit.h +++ b/libgcc/fp-bit.h @@ -189,7 +189,7 @@ typedef unsigned int UTItype __attribute__ ((mode (TI))); # define EXPBIAS 127 # define FRACBITS 23 # define EXPMAX (0xff) -# define QUIET_NAN 0x100000L +# define QUIET_NAN 0x400000L # define FRAC_NBITS 32 # define FRACHIGH 0x80000000L # define FRACHIGH2 0xc0000000L |