aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-04-27 18:00:55 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-04-27 18:00:55 +0000
commit32cd8777cf7989ec293a67b3198637ea82d3cdca (patch)
treeb363999eace1f16b09b4450f4793c4c123ad4a45
parent73ecddd39977b3659675d77fd2bca94cc5903055 (diff)
downloadgcc-32cd8777cf7989ec293a67b3198637ea82d3cdca.zip
gcc-32cd8777cf7989ec293a67b3198637ea82d3cdca.tar.gz
gcc-32cd8777cf7989ec293a67b3198637ea82d3cdca.tar.bz2
* tree-ssa-dce.c: Fix a comment typo.
From-SVN: r98866
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree-ssa-dce.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4c6ef87..96e67f1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2005-04-27 Kazu Hirata <kazu@cs.umass.edu>
+
+ * tree-ssa-dce.c: Fix a comment typo.
+
2005-04-27 David S. Miller <davem@davemloft.net>
* explow.c (allocate_dynamic_stack_space SETJMP_VIA_SAVE_AREA):
diff --git a/gcc/tree-ssa-dce.c b/gcc/tree-ssa-dce.c
index fd58ea1..4ce0ce3 100644
--- a/gcc/tree-ssa-dce.c
+++ b/gcc/tree-ssa-dce.c
@@ -716,7 +716,7 @@ remove_dead_stmt (block_stmt_iterator *i, basic_block bb)
nothing to the program, then we not only remove it, but we also change
the flow graph so that the current block will simply fall-thru to its
immediate post-dominator. The blocks we are circumventing will be
- removed by cleaup_cfg if this change in the flow graph makes them
+ removed by cleaup_tree_cfg if this change in the flow graph makes them
unreachable. */
if (is_ctrl_stmt (t))
{