Commit 879f9d0b by H.J. Lu Committed by H.J. Lu

i386: Fix ')' in VALID_MMX_REG_MODE

Replace "(MODE == V1DImode)" with "(MODE) == V1DImode".

	* config/i386/i386.h (VALID_MMX_REG_MODE): Correct the misplaced
	')'.

From-SVN: r268947
parent d6cfb47f
2019-02-15 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.h (VALID_MMX_REG_MODE): Correct the misplaced
')'.
2019-02-15 Uroš Bizjak <ubizjak@gmail.com>
* config/i386/darwin.h (TARGET_FPMATH_DEFAULT_P): New define.
......
......@@ -1158,7 +1158,7 @@ extern const char *host_detect_local_cpu (int argc, const char **argv);
((MODE) == V2SFmode || (MODE) == SFmode)
#define VALID_MMX_REG_MODE(MODE) \
((MODE == V1DImode) || (MODE) == DImode \
((MODE) == V1DImode || (MODE) == DImode \
|| (MODE) == V2SImode || (MODE) == SImode \
|| (MODE) == V4HImode || (MODE) == V8QImode)
......
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