Commit e0c13c70 by H.J. Lu Committed by H.J. Lu

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
parent 4c11675d
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.
......
......@@ -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}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment