aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-09-15 13:06:30 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-09-15 13:06:30 +0000
commitb3a27618a0e5169cebbf012df39afebeae80d90d (patch)
treeab18b4d826cf2e700843ccae9c512e195819be6c
parenta8ea34ebede378501f83d86ff8837cf69ced9fae (diff)
downloadgcc-b3a27618a0e5169cebbf012df39afebeae80d90d.zip
gcc-b3a27618a0e5169cebbf012df39afebeae80d90d.tar.gz
gcc-b3a27618a0e5169cebbf012df39afebeae80d90d.tar.bz2
* tree-ssa-dom.c: Fix comment typos.
From-SVN: r87549
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree-ssa-dom.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7cd349e..790c459 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2004-09-15 Kazu Hirata <kazu@cs.umass.edu>
+
+ * tree-ssa-dom.c: Fix comment typos.
+
2004-09-15 Alan Modra <amodra@bigpond.net.au>
* config/rs6000/linux-unwind.h (struct gcc_pt_regs): Extend to
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c
index f090c87..50b5cc0 100644
--- a/gcc/tree-ssa-dom.c
+++ b/gcc/tree-ssa-dom.c
@@ -55,7 +55,7 @@ static htab_t avail_exprs;
/* Stack of available expressions in AVAIL_EXPRs. Each block pushes any
expressions it enters into the hash table along with a marker entry
- (null). When we finsh processing the block, we pop off entries and
+ (null). When we finish processing the block, we pop off entries and
remove the expressions from the global hash table until we hit the
marker. */
static varray_type avail_exprs_stack;
@@ -750,7 +750,7 @@ dom_opt_initialize_block (struct dom_walk_data *walk_data, basic_block bb)
fprintf (dump_file, "\n\nOptimizing block #%d\n\n", bb->index);
/* Push a marker on AVAIL_EXPRS_STACK so that we know how far to unwind
- when we finalize this blcok. */
+ when we finalize this block. */
VARRAY_PUSH_TREE (avail_exprs_stack, NULL_TREE);
record_equivalences_from_incoming_edge (walk_data, bb);