diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2013-05-06 10:22:48 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2013-05-06 10:22:48 +0200 |
commit | 701e2f0a76da581d75fa3adac925d58aff7a1290 (patch) | |
tree | 937c9566ad2208dbbcdfa1835ad4af9d988277a4 /libgcc/fp-bit.h | |
parent | 470d4d131d1435da0a65a6b07da4a22f028159f8 (diff) | |
download | gcc-701e2f0a76da581d75fa3adac925d58aff7a1290.tar.gz |
fp-bit.h [FLOAT] (QUIET_NAN): Correct value.
libgcc/
* fp-bit.h [FLOAT] (QUIET_NAN): Correct value.
From-SVN: r198621
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 |