Base on suggestions from Zhang Fuxin <fxzhang@ict.ac.cn>:

2002-05-20  H.J. Lu  (hjl@gnu.org)

	Base on suggestions from Zhang Fuxin <fxzhang@ict.ac.cn>:

	* config/mips/mips.h (DFMODE_NAN): Defined.
	(SFMODE_NAN): Likewise.

From-SVN: r53674
This commit is contained in:
H.J. Lu 2002-05-20 22:43:31 +00:00 committed by H.J. Lu
parent 4c11675d61
commit e0c13c70e2
2 changed files with 15 additions and 0 deletions

View File

@ -1,4 +1,12 @@
2002-05-20 H.J. Lu (hjl@gnu.org)
Base on suggestions from Zhang Fuxin <fxzhang@ict.ac.cn>:
* config/mips/mips.h (DFMODE_NAN): Defined.
(SFMODE_NAN): Likewise.
2002-05-20 Dale Johannesen <dalej@apple.com>
* combine.c (cant_combine_insn_p): Back out my
previous patch.

View File

@ -4690,3 +4690,10 @@ do \
} \
} \
while (0)
#define DFMODE_NAN \
unsigned short DFbignan[4] = {0x7ff7, 0xffff, 0xffff, 0xffff}; \
unsigned short DFlittlenan[4] = {0xffff, 0xffff, 0xffff, 0xfff7}
#define SFMODE_NAN \
unsigned short SFbignan[2] = {0x7fbf, 0xffff}; \
unsigned short SFlittlenan[2] = {0xffff, 0xffbf}