mirror of git://gcc.gnu.org/git/gcc.git
mips.h (ISA_HAS_MULS, [...]): Fix comment typos.
* config/mips/mips.h (ISA_HAS_MULS, ISA_HAS_MSAC, ISA_HAS_MACC): Fix comment typos. From-SVN: r200969
This commit is contained in:
parent
839c74bced
commit
d2ab09297c
|
|
@ -1,3 +1,8 @@
|
||||||
|
2013-07-16 Maciej W. Rozycki <macro@codesourcery.com>
|
||||||
|
|
||||||
|
* config/mips/mips.h (ISA_HAS_MULS, ISA_HAS_MSAC, ISA_HAS_MACC):
|
||||||
|
Fix comment typos.
|
||||||
|
|
||||||
2013-07-15 Cong Hou <congh@google.com>
|
2013-07-15 Cong Hou <congh@google.com>
|
||||||
|
|
||||||
* tree-vect-data-refs.c (dr_group_sort_cmp): Do not use hash function
|
* tree-vect-data-refs.c (dr_group_sort_cmp): Do not use hash function
|
||||||
|
|
|
||||||
|
|
@ -929,22 +929,22 @@ struct mips_cpu_info {
|
||||||
|| TARGET_SR71K) \
|
|| TARGET_SR71K) \
|
||||||
&& !TARGET_MIPS16)
|
&& !TARGET_MIPS16)
|
||||||
|
|
||||||
/* ISA has three operand multiply instructions that
|
/* ISA has three operand multiply instructions that negate the
|
||||||
negates the result and puts the result in an accumulator. */
|
result and put the result in an accumulator. */
|
||||||
#define ISA_HAS_MULS ((TARGET_MIPS5400 \
|
#define ISA_HAS_MULS ((TARGET_MIPS5400 \
|
||||||
|| TARGET_MIPS5500 \
|
|| TARGET_MIPS5500 \
|
||||||
|| TARGET_SR71K) \
|
|| TARGET_SR71K) \
|
||||||
&& !TARGET_MIPS16)
|
&& !TARGET_MIPS16)
|
||||||
|
|
||||||
/* ISA has three operand multiply instructions that subtracts the
|
/* ISA has three operand multiply instructions that subtract the
|
||||||
result from a 4th operand and puts the result in an accumulator. */
|
result from a 4th operand and put the result in an accumulator. */
|
||||||
#define ISA_HAS_MSAC ((TARGET_MIPS5400 \
|
#define ISA_HAS_MSAC ((TARGET_MIPS5400 \
|
||||||
|| TARGET_MIPS5500 \
|
|| TARGET_MIPS5500 \
|
||||||
|| TARGET_SR71K) \
|
|| TARGET_SR71K) \
|
||||||
&& !TARGET_MIPS16)
|
&& !TARGET_MIPS16)
|
||||||
|
|
||||||
/* ISA has three operand multiply instructions that the result
|
/* ISA has three operand multiply instructions that add the result
|
||||||
from a 4th operand and puts the result in an accumulator. */
|
to a 4th operand and put the result in an accumulator. */
|
||||||
#define ISA_HAS_MACC ((TARGET_MIPS4120 \
|
#define ISA_HAS_MACC ((TARGET_MIPS4120 \
|
||||||
|| TARGET_MIPS4130 \
|
|| TARGET_MIPS4130 \
|
||||||
|| TARGET_MIPS5400 \
|
|| TARGET_MIPS5400 \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue