diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-04 17:15:31 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-04 17:15:31 +0000 |
commit | d15713f9b684181aa673a60145e66dd1befc5a1d (patch) | |
tree | 9f36a787a3f3346ad83db21e2bfd57726ec9694a /gcc/tree-flow-inline.h | |
parent | 2e5ed910019859bb792a6eb7ce66d637681e9827 (diff) | |
download | gcc-d15713f9b684181aa673a60145e66dd1befc5a1d.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99220 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-flow-inline.h')
-rw-r--r-- | gcc/tree-flow-inline.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h index 3fa6259aa8e..00fb7ac6d3d 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; |