diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-05-04 17:15:31 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-05-04 17:15:31 +0000 |
commit | 395bda42dda9992410fc66bf655ffe503ef6d75b (patch) | |
tree | 9f36a787a3f3346ad83db21e2bfd57726ec9694a /gcc/tree-ssa-operands.c | |
parent | 4268e4cfa2e3720525e68b9b4277cc0bcce5ac5c (diff) | |
download | gcc-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-ssa-operands.c')
-rw-r--r-- | gcc/tree-ssa-operands.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index d46bf84..d2a48bb 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -104,7 +104,7 @@ Boston, MA 02111-1307, USA. */ struct opbuild_list_d GTY (()) { varray_type vars; /* The VAR_DECLS tree. */ - varray_type uid; /* The sort value for virtaul symbols. */ + varray_type uid; /* The sort value for virtual symbols. */ varray_type next; /* The next index in the sorted list. */ int first; /* First element in list. */ unsigned num; /* Number of elements. */ @@ -284,7 +284,7 @@ opbuild_append_virtual (struct opbuild_list_d *list, tree var) } else { - /* Dont enter duplicates at all. */ + /* Don't enter duplicates at all. */ if (VARRAY_UINT (list->uid, last) == var_uid) return; @@ -359,7 +359,7 @@ opbuild_clear (struct opbuild_list_d *list) } -/* Remove ELEM from LIST where PREV is the rpevious element. Return the next +/* Remove ELEM from LIST where PREV is the previous element. Return the next element. */ static inline int @@ -1064,7 +1064,7 @@ copy_virtual_operands (tree dest, tree src) build_ssa_operands (dest); - /* Copy all the virtuial fields. */ + /* Copy all the virtual fields. */ FOR_EACH_SSA_TREE_OPERAND (t, src, iter, SSA_OP_VUSE) append_vuse (t); FOR_EACH_SSA_TREE_OPERAND (t, src, iter, SSA_OP_VMAYDEF) |