aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-flow-inline.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-05-04 17:15:31 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-05-04 17:15:31 +0000
commit395bda42dda9992410fc66bf655ffe503ef6d75b (patch)
tree9f36a787a3f3346ad83db21e2bfd57726ec9694a /gcc/tree-flow-inline.h
parent4268e4cfa2e3720525e68b9b4277cc0bcce5ac5c (diff)
downloadgcc-395bda42dda9992410fc66bf655ffe503ef6d75b.zip
gcc-395bda42dda9992410fc66bf655ffe503ef6d75b.tar.gz
gcc-395bda42dda9992410fc66bf655ffe503ef6d75b.tar.bz2
tree-flow-inline.h, [...]: Likewise.
* tree-flow-inline.h, tree-ssa-operands.c, tree-ssa-operands.h, tree-ssa-opfinalize.h: Likewise. tree-vn.c: Fix comment typos. * doc/passes.texi, doc/tree-ssa.texi: Fix typos. From-SVN: r99220
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r--gcc/tree-flow-inline.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h
index 3fa6259..00fb7ac 100644
--- a/gcc/tree-flow-inline.h
+++ b/gcc/tree-flow-inline.h
@@ -957,7 +957,7 @@ op_iter_next_tree (ssa_op_iter *ptr)
}
-/* This functiins clears the iterator PTR, and marks it done. This is normally
+/* This functions clears the iterator PTR, and marks it done. This is normally
used to prevent warnings in the compile about might be uninitailzied
components. */
@@ -1103,7 +1103,7 @@ op_iter_init_must_and_may_def (ssa_op_iter *ptr, tree stmt,
}
-/* If there is a single opernad in STMT matching FLAGS, return it. Otherwise
+/* If there is a single operand in STMT matching FLAGS, return it. Otherwise
return NULL. PTR is the iterator to use. */
static inline tree
single_ssa_tree_operand (tree stmt, int flags)
@@ -1121,7 +1121,7 @@ single_ssa_tree_operand (tree stmt, int flags)
}
-/* If there is a single opernad in STMT matching FLAGS, return it. Otherwise
+/* If there is a single operand in STMT matching FLAGS, return it. Otherwise
return NULL. PTR is the iterator to use. */
static inline use_operand_p
single_ssa_use_operand (tree stmt, int flags)
@@ -1140,7 +1140,7 @@ single_ssa_use_operand (tree stmt, int flags)
-/* If there is a single opernad in STMT matching FLAGS, return it. Otherwise
+/* If there is a single operand in STMT matching FLAGS, return it. Otherwise
return NULL. PTR is the iterator to use. */
static inline def_operand_p
single_ssa_def_operand (tree stmt, int flags)
@@ -1158,7 +1158,7 @@ single_ssa_def_operand (tree stmt, int flags)
}
-/* If there is a single opernad in STMT matching FLAGS, return it. Otherwise
+/* If there is a single operand in STMT matching FLAGS, return it. Otherwise
return NULL. PTR is the iterator to use. */
static inline bool
zero_ssa_operands (tree stmt, int flags)
@@ -1170,7 +1170,7 @@ zero_ssa_operands (tree stmt, int flags)
}
-/* Return the number of opernads mathcing FLAGS in STMT. */
+/* Return the number of operands matching FLAGS in STMT. */
static inline int
num_ssa_operands (tree stmt, int flags)
{
@@ -1285,7 +1285,7 @@ op_iter_init_phiuse (ssa_op_iter *ptr, tree phi, int flags)
comp = (is_gimple_reg (phi_def) ? SSA_OP_USE : SSA_OP_VIRTUAL_USES);
- /* if the PHI node deosn't the operand type we care about, we're done. */
+ /* If the PHI node doesn't the operand type we care about, we're done. */
if ((flags & comp) == 0)
{
ptr->done = true;
@@ -1299,7 +1299,7 @@ op_iter_init_phiuse (ssa_op_iter *ptr, tree phi, int flags)
}
-/* Start an iterator for a PHI defintion. */
+/* Start an iterator for a PHI definition. */
static inline def_operand_p
op_iter_init_phidef (ssa_op_iter *ptr, tree phi, int flags)
@@ -1314,7 +1314,7 @@ op_iter_init_phidef (ssa_op_iter *ptr, tree phi, int flags)
comp = (is_gimple_reg (phi_def) ? SSA_OP_DEF : SSA_OP_VIRTUAL_DEFS);
- /* if the PHI node deosn't the operand type we care about, we're done. */
+ /* If the PHI node doesn't the operand type we care about, we're done. */
if ((flags & comp) == 0)
{
ptr->done = true;