summaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-10 20:21:28 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2005-05-10 20:21:28 +0000
commit77d7fee00353f5b5b2a8fb394b39de3fd1fb7043 (patch)
treeaa003f79b8af0aa3b480021279b0bdbd077f66d1 /gcc
parent55a03692320638b8a055d74bb84b704036f479e7 (diff)
downloadgcc-77d7fee00353f5b5b2a8fb394b39de3fd1fb7043.tar.gz
PR tree-optimization/21170
* tree-ssa-dom.c, tree-ssa-threadupdate.c: Replace rewrite_ssa_into_ssa in comments with update_ssa. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99540 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/tree-ssa-dom.c2
-rw-r--r--gcc/tree-ssa-threadupdate.c4
3 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 4cd2728a7d2..0b3ee3438d6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2005-05-10 Kazu Hirata <kazu@cs.umass.edu>
+
+ PR tree-optimization/21170
+ * tree-ssa-dom.c, tree-ssa-threadupdate.c: Replace
+ rewrite_ssa_into_ssa in comments with update_ssa.
+
2005-05-10 Zdenek Dvorak <dvorakz@suse.cz>
* tree-ssa-loop-im.c: Include hashtab.h.
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c
index 541ad4cea62..42c0c306832 100644
--- a/gcc/tree-ssa-dom.c
+++ b/gcc/tree-ssa-dom.c
@@ -486,7 +486,7 @@ tree_ssa_dominator_optimize (void)
This must be done before we iterate as we might have a
reference to an SSA_NAME which was removed by the call to
- rewrite_ssa_into_ssa.
+ update_ssa.
Long term we will be able to let everything in SSA_NAME_VALUE
persist. However, for now, we know this is the safe thing to do. */
diff --git a/gcc/tree-ssa-threadupdate.c b/gcc/tree-ssa-threadupdate.c
index a5dc0496092..e72598d830e 100644
--- a/gcc/tree-ssa-threadupdate.c
+++ b/gcc/tree-ssa-threadupdate.c
@@ -648,8 +648,8 @@ redirect_edges (void **slot, void *data)
the appropriate duplicate of BB.
BB and its duplicates will have assignments to the same set of
- SSA_NAMEs. Right now, we just call into rewrite_ssa_into_ssa
- to update the SSA graph for those names.
+ SSA_NAMEs. Right now, we just call into update_ssa to update the
+ SSA graph for those names.
We are also going to experiment with a true incremental update
scheme for the duplicated resources. One of the interesting