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
This commit is contained in:
H.J. Lu 2019-02-15 20:47:31 +00:00 committed by H.J. Lu
parent d6cfb47fd4
commit 879f9d0b2f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
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.

View file

@ -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)