aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2005-09-30 15:36:26 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-09-30 15:36:26 +0000
commit5116a5d2abdb71def512bf9ec6255f3a511d5e41 (patch)
tree5d9c2509ab43e109caf93d2dee946c2ca4497df4
parent5dc2e33320cada5471dfa0fa219c302d367b75c1 (diff)
downloadgcc-5116a5d2abdb71def512bf9ec6255f3a511d5e41.zip
gcc-5116a5d2abdb71def512bf9ec6255f3a511d5e41.tar.gz
gcc-5116a5d2abdb71def512bf9ec6255f3a511d5e41.tar.bz2
tree-vect-transform.c, [...]: Fix comment typos.
* tree-vect-transform.c, config/ms1/ms1.md, config/s390/s390.c, config/v850/v850.md: Fix comment typos. Follow spelling conventions. * doc/invoke.texi, doc/md.texi: Fix typos. From-SVN: r104817
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/ms1/ms1.md4
-rw-r--r--gcc/config/s390/s390.c2
-rw-r--r--gcc/config/v850/v850.md2
-rw-r--r--gcc/doc/invoke.texi2
-rw-r--r--gcc/doc/md.texi8
-rw-r--r--gcc/tree-vect-transform.c2
7 files changed, 17 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6ff4c0f..aaa7c8c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2005-09-30 Kazu Hirata <kazu@codesourcery.com>
+
+ * tree-vect-transform.c, config/ms1/ms1.md,
+ config/s390/s390.c, config/v850/v850.md: Fix comment typos.
+ Follow spelling conventions.
+ * doc/invoke.texi, doc/md.texi: Fix typos.
+
2005-09-30 Andrew Macleod <amacleod@redat.com>
PR tree-optimization/21430
diff --git a/gcc/config/ms1/ms1.md b/gcc/config/ms1/ms1.md
index df4ca2c..22c6b59 100644
--- a/gcc/config/ms1/ms1.md
+++ b/gcc/config/ms1/ms1.md
@@ -243,7 +243,7 @@
DONE;
}
- /* If the load is a psuedo register in a stack slot, some simplification
+ /* If the load is a pseudo register in a stack slot, some simplification
can be made because the loads are aligned */
if ( (! TARGET_BYTE_ACCESS)
&& (reload_in_progress && GET_CODE (operands[1]) == SUBREG
@@ -417,7 +417,7 @@
DONE;
}
- /* If the load is a psuedo register in a stack slot, some simplification
+ /* If the load is a pseudo register in a stack slot, some simplification
can be made because the loads are aligned */
if ( (reload_in_progress && GET_CODE (operands[1]) == SUBREG
&& GET_CODE (SUBREG_REG (operands[1])) == REG
diff --git a/gcc/config/s390/s390.c b/gcc/config/s390/s390.c
index a543e59..5284db1 100644
--- a/gcc/config/s390/s390.c
+++ b/gcc/config/s390/s390.c
@@ -1099,7 +1099,7 @@ s390_overlap_p (rtx mem1, rtx mem2, HOST_WIDE_INT size)
Overlapping operations would otherwise be recognized by the S/390 hardware
and would fall back to a slower implementation. Allowing overlapping
operations would lead to slow code but not to wrong code. Therefore we are
- somewhat optimistict if we cannot prove that the memory blocks are
+ somewhat optimistic if we cannot prove that the memory blocks are
overlapping.
That's why we return false here although this may accept operations on
overlapping memory areas. */
diff --git a/gcc/config/v850/v850.md b/gcc/config/v850/v850.md
index e67dc40..9b35306 100644
--- a/gcc/config/v850/v850.md
+++ b/gcc/config/v850/v850.md
@@ -1309,7 +1309,7 @@
/* Branch to the default label if out of range of the table. */
emit_jump_insn (gen_bgtu (operands[4]));
- /* Disabled because the switch pattern is not being recognised
+ /* Disabled because the switch pattern is not being recognized
properly at the moment. eg. compiling vfscanf.c in newlib. */
if (0 && ! TARGET_BIG_SWITCH && TARGET_V850E)
{
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index 814d9d8..1a50301 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -5912,7 +5912,7 @@ Bound on size of expressions used in the scalar evolutions analyzer.
Large expressions slow the analyzer.
@item vect-max-version-checks
-The maxinum number of runtime checks that can be performed when doing
+The maximum number of runtime checks that can be performed when doing
loop versioning in the vectorizer. See option ftree-vect-loop-version
for more information.
diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi
index 38c311d..460f24d 100644
--- a/gcc/doc/md.texi
+++ b/gcc/doc/md.texi
@@ -3086,14 +3086,14 @@ modes.
@cindex @code{reduc_splus_@var{m}} instruction pattern
@item @samp{reduc_splus_@var{m}}
-Compute the sum of the signed elements of a vector. The vector is opernad 1,
-and the scalar result is stored in the least significant bits of opernad 0
+Compute the sum of the signed elements of a vector. The vector is operand 1,
+and the scalar result is stored in the least significant bits of operand 0
(also a vector). The output and input vector should have the same modes.
@cindex @code{reduc_uplus_@var{m}} instruction pattern
@item @samp{reduc_uplus_@var{m}}
-Compute the sum of the unsigned elements of a vector. The vector is opernad 1,
-and the scalar result is stored in the least significant bits of opernad 0
+Compute the sum of the unsigned elements of a vector. The vector is operand 1,
+and the scalar result is stored in the least significant bits of operand 0
(also a vector). The output and input vector should have the same modes.
@cindex @code{vec_shl_@var{m}} instruction pattern
diff --git a/gcc/tree-vect-transform.c b/gcc/tree-vect-transform.c
index bbac6fe..bc37bd2 100644
--- a/gcc/tree-vect-transform.c
+++ b/gcc/tree-vect-transform.c
@@ -1781,7 +1781,7 @@ vectorizable_load (tree stmt, block_stmt_iterator *bsi, tree *vec_stmt)
the value of the parameter and no global variables are touched
which makes the builtin a "const" function. Requiring the
builtin to have the "const" attribute makes it unnecessary
- to call mark_call_clobbered_vars_to_rename. */
+ to call mark_call_clobbered. */
gcc_assert (TREE_READONLY (builtin_decl));
}
else