aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-operands.c
diff options
context:
space:
mode:
authorVolker Reichelt <reichelt@igpm.rwth-aachen.de>2005-07-21 11:53:00 +0000
committerVolker Reichelt <reichelt@gcc.gnu.org>2005-07-21 11:53:00 +0000
commit2e48874fee767eb93625681f09067852a41540c9 (patch)
treed58c27b9153f5e65b9e113382a81cd3bce6eac2b /gcc/tree-ssa-operands.c
parentc72a1a86739dc493dceec289da603b8517b46b12 (diff)
downloadgcc-2e48874fee767eb93625681f09067852a41540c9.zip
gcc-2e48874fee767eb93625681f09067852a41540c9.tar.gz
gcc-2e48874fee767eb93625681f09067852a41540c9.tar.bz2
reg-stack.c: Fix comment typo(s).
* reg-stack.c: Fix comment typo(s). * tree-ssa-operands.c: Likewise. * tree-vectorizer: Likewise. From-SVN: r102232
Diffstat (limited to 'gcc/tree-ssa-operands.c')
-rw-r--r--gcc/tree-ssa-operands.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c
index 2044394..c80ec5d 100644
--- a/gcc/tree-ssa-operands.c
+++ b/gcc/tree-ssa-operands.c
@@ -459,10 +459,10 @@ ssa_operand_alloc (unsigned size)
}
-/* Make sure PTR is inn the correct immediate use list. Since uses are simply
+/* Make sure PTR is in the correct immediate use list. Since uses are simply
pointers into the stmt TREE, there is no way of telling if anyone has
changed what this pointer points to via TREE_OPERANDS (exp, 0) = <...>.
- THe contents are different, but the the pointer is still the same. This
+ The contents are different, but the pointer is still the same. This
routine will check to make sure PTR is in the correct list, and if it isn't
put it in the correct list. We cannot simply check the previous node
because all nodes in the same stmt might have be changed. */
@@ -482,7 +482,7 @@ correct_use_link (use_operand_p ptr, tree stmt)
{
bool stmt_mod = true;
/* Find the first element which isn't a SAFE iterator, is in a different
- stmt, and is not a a modified stmt, That node is in the correct list,
+ stmt, and is not a modified stmt. That node is in the correct list,
see if we are too. */
while (stmt_mod)