mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-10 12:17:42 +08:00
gjavah.c (D_NAN_MASK): Only define as word-reversed when HOST_FLOAT_WORDS_BIG_ENDIAN and...
* gjavah.c (D_NAN_MASK): Only define as word-reversed when HOST_FLOAT_WORDS_BIG_ENDIAN and HOST_WORDS_BIG_ENDIAN disagree. From-SVN: r32832
This commit is contained in:
parent
14c78e9b16
commit
05411ecfe5
@ -1,3 +1,8 @@
|
||||
2000-03-30 Tom Tromey <tromey@cygnus.com>
|
||||
|
||||
* gjavah.c (D_NAN_MASK): Only define as word-reversed when
|
||||
HOST_FLOAT_WORDS_BIG_ENDIAN and HOST_WORDS_BIG_ENDIAN disagree.
|
||||
|
||||
2000-03-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
|
||||
|
||||
* parse-scan.y (pop_class_context): Reset `inner_qualifier_length'
|
||||
|
@ -203,7 +203,7 @@ static int decompiled = 0;
|
||||
|
||||
/* Some useful constants. */
|
||||
#define F_NAN_MASK 0x7f800000
|
||||
#if (1 == HOST_FLOAT_WORDS_BIG_ENDIAN)
|
||||
#if (1 == HOST_FLOAT_WORDS_BIG_ENDIAN) && ! defined (HOST_WORDS_BIG_ENDIAN)
|
||||
#define D_NAN_MASK 0x000000007ff00000LL
|
||||
#else
|
||||
#define D_NAN_MASK 0x7ff0000000000000LL
|
||||
|
Loading…
Reference in New Issue
Block a user