summaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-operands.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-04 17:15:31 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-04 17:15:31 +0000
commitd15713f9b684181aa673a60145e66dd1befc5a1d (patch)
tree9f36a787a3f3346ad83db21e2bfd57726ec9694a /gcc/tree-ssa-operands.c
parent2e5ed910019859bb792a6eb7ce66d637681e9827 (diff)
downloadgcc-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-ssa-operands.c')
-rw-r--r--gcc/tree-ssa-operands.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c
index d46bf847838..d2a48bbf530 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)