summaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-uncprop.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-04-13 14:34:13 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-04-13 14:34:13 +0000
commitf0e4ea10f9d4ea950a89338ff99943f4fb274c00 (patch)
tree61ca3ff252cd1e5c6f3886fcfa7f1f1b672e4c27 /gcc/tree-ssa-uncprop.c
parentfec02a2d77525e980aa9ac53f6c308004144c5b7 (diff)
downloadgcc-f0e4ea10f9d4ea950a89338ff99943f4fb274c00.tar.gz
basic-block.h, [...]: Fix comment typos.
* basic-block.h, tree-ssa-uncprop.c, varasm.c, config/i386/sse.md: Fix comment typos. From-SVN: r98085
Diffstat (limited to 'gcc/tree-ssa-uncprop.c')
-rw-r--r--gcc/tree-ssa-uncprop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-uncprop.c b/gcc/tree-ssa-uncprop.c
index 4400ee78003..a73c27155e9 100644
--- a/gcc/tree-ssa-uncprop.c
+++ b/gcc/tree-ssa-uncprop.c
@@ -258,7 +258,7 @@ associate_equivalences_with_edges (void)
COND_EXPRs and SWITCH_EXPRs.
We want to do those propagations as they can sometimes allow
- the SSA optimziers to do a better job. However, in the cases
+ the SSA optimizers to do a better job. However, in the cases
where such propagations do not result in further optimization,
we would like to "undo" the propagation to avoid the redundant
copies and constant initializations.
@@ -507,7 +507,7 @@ uncprop_into_successor_phis (struct dom_walk_data *walk_data ATTRIBUTE_UNUSED,
/* Walk every equivalence with the same value. If we find
one with the same underlying variable as the PHI result,
then replace the value in the argument with its equivalent
- SSA_NAME. Use the most recent equivlance as hopefully
+ SSA_NAME. Use the most recent equivalence as hopefully
that results in shortest lifetimes. */
for (j = VARRAY_ACTIVE_SIZE (elt->equivalences) - 1; j >= 0; j--)
{