Commit 91da27c5 by Jan Hubicka Committed by Jan Hubicka

i386.h (SSE_FLOAT_MODE_P): Fix bogus conflict resolution in last patch.

	* i386.h (SSE_FLOAT_MODE_P): Fix bogus conflict resolution
	in last patch.

From-SVN: r52475
parent a32db605
Thu Apr 18 17:14:08 CEST 2002 Jan Hubicka <jh@suse.cz>
* i386.h (SSE_FLOAT_MODE_P): Fix bogus conflict resolution
in last patch.
2002-04-18 Jakub Jelinek <jakub@redhat.com>
* fold-const.c (fold): Use (*lang_hooks.types.unsigned_type)
......
......@@ -1316,7 +1316,7 @@ enum reg_class
#define SSE_REG_P(N) (REG_P (N) && SSE_REGNO_P (REGNO (N)))
#define SSE_FLOAT_MODE_P(MODE) \
((MODE) == SFmode || (TARGET_SSE2 && (MODE) == DFmode))
((TARGET_SSE && (MODE) == SFmode) || (TARGET_SSE2 && (MODE) == DFmode))
#define MMX_REGNO_P(N) ((N) >= FIRST_MMX_REG && (N) <= LAST_MMX_REG)
#define MMX_REG_P(XOP) (REG_P (XOP) && MMX_REGNO_P (REGNO (XOP)))
......
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