aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-flow-inline.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-04-29 15:34:45 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-04-29 15:34:45 +0000
commitd566f6ef9806687996c52ce1395d18f7316e8345 (patch)
tree3b78c2674c93e2275d0d3bf41205b0be32dd8d9e /gcc/tree-flow-inline.h
parentd198b59ab12557edbafc2bba595f855caccfc6ec (diff)
downloadgcc-d566f6ef9806687996c52ce1395d18f7316e8345.zip
gcc-d566f6ef9806687996c52ce1395d18f7316e8345.tar.gz
gcc-d566f6ef9806687996c52ce1395d18f7316e8345.tar.bz2
* tree-flow-inline.h, tree-ssa-operands.c: Fix comment typos.
From-SVN: r98994
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r--gcc/tree-flow-inline.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h
index d8a0b4b..5da85e0 100644
--- a/gcc/tree-flow-inline.h
+++ b/gcc/tree-flow-inline.h
@@ -314,7 +314,7 @@ first_safe_imm_use (imm_use_iterator *imm, tree var)
return imm->imm_use;
}
-/* Bump IMM to then next use in the list. */
+/* Bump IMM to the next use in the list. */
static inline use_operand_p
next_safe_imm_use (imm_use_iterator *imm)
{
@@ -332,7 +332,7 @@ next_safe_imm_use (imm_use_iterator *imm)
imm->imm_use = imm->imm_use->next;
if (! end_safe_imm_use_p (imm))
{
- /* This isnt the end, link iternode before the next use. */
+ /* This isn't the end, link iternode before the next use. */
ptr->prev = imm->imm_use->prev;
ptr->next = imm->imm_use;
imm->imm_use->prev->next = ptr;
@@ -380,7 +380,7 @@ first_readonly_imm_use (imm_use_iterator *imm, tree var)
return imm->imm_use;
}
-/* Bump IMM to then next use in the list. */
+/* Bump IMM to the next use in the list. */
static inline use_operand_p
next_readonly_imm_use (imm_use_iterator *imm)
{