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:
parent
d6cfb47fd4
commit
879f9d0b2f
2 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue