summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormacro <macro@138bc75d-0d04-0410-961f-82ee72b054a4>2013-07-16 00:16:26 +0000
committermacro <macro@138bc75d-0d04-0410-961f-82ee72b054a4>2013-07-16 00:16:26 +0000
commit512f12d66a4f66e73ef629d68de13582e0efa200 (patch)
treecefe27c5dde42aeda3cc5ade3a2a8e574a82cfc0
parent9b44c85af70a72188ba262f88725461598a8ae93 (diff)
downloadgcc-512f12d66a4f66e73ef629d68de13582e0efa200.tar.gz
* config/mips/mips.h (ISA_HAS_MULS, ISA_HAS_MSAC, ISA_HAS_MACC):
Fix comment typos. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@200969 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/mips/mips.h12
2 files changed, 11 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8248001bd6d..c5d96e3e3cc 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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>
* tree-vect-data-refs.c (dr_group_sort_cmp): Do not use hash function
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h
index d775a8c940b..838037f2913 100644
--- a/gcc/config/mips/mips.h
+++ b/gcc/config/mips/mips.h
@@ -929,22 +929,22 @@ struct mips_cpu_info {
|| TARGET_SR71K) \
&& !TARGET_MIPS16)
-/* ISA has three operand multiply instructions that
- negates the result and puts the result in an accumulator. */
+/* ISA has three operand multiply instructions that negate the
+ result and put the result in an accumulator. */
#define ISA_HAS_MULS ((TARGET_MIPS5400 \
|| TARGET_MIPS5500 \
|| TARGET_SR71K) \
&& !TARGET_MIPS16)
-/* ISA has three operand multiply instructions that subtracts the
- result from a 4th operand and puts the result in an accumulator. */
+/* ISA has three operand multiply instructions that subtract the
+ result from a 4th operand and put the result in an accumulator. */
#define ISA_HAS_MSAC ((TARGET_MIPS5400 \
|| TARGET_MIPS5500 \
|| TARGET_SR71K) \
&& !TARGET_MIPS16)
-/* ISA has three operand multiply instructions that the result
- from a 4th operand and puts the result in an accumulator. */
+/* ISA has three operand multiply instructions that add the result
+ to a 4th operand and put the result in an accumulator. */
#define ISA_HAS_MACC ((TARGET_MIPS4120 \
|| TARGET_MIPS4130 \
|| TARGET_MIPS5400 \