diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-20 11:17:22 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-20 11:17:22 +0000 |
commit | 7a635e9cb084245a896f9d75506fd095b613c4a3 (patch) | |
tree | 91331df04325bb2679babd9f724a756835ba42da /gcc/tree-ssa-threadupdate.c | |
parent | 2c67c2b3205659036e28c2e6518301db1025b0b6 (diff) | |
download | gcc-7a635e9cb084245a896f9d75506fd095b613c4a3.tar.gz |
* cfg.c, tree-ssa-threadupdate.c, tree-vectorizer.c: Fix
comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87753 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-threadupdate.c')
-rw-r--r-- | gcc/tree-ssa-threadupdate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-threadupdate.c b/gcc/tree-ssa-threadupdate.c index 112509f4601..a76ce67633a 100644 --- a/gcc/tree-ssa-threadupdate.c +++ b/gcc/tree-ssa-threadupdate.c @@ -55,7 +55,7 @@ Boston, MA 02111-1307, USA. */ with the edge B'->C. 4. For each PHI in B, find or create a PHI in B' with an identical - PHI_RESULT. Add an argument to the PHI in B' which as the same + PHI_RESULT. Add an argument to the PHI in B' which has the same value as the PHI in B associated with the edge A->B. Associate the new argument in the PHI in B' with the edge A->B. @@ -226,7 +226,7 @@ create_block_for_threading (basic_block bb, struct redirection_data *rd) to update the SSA graph for those names. We are also going to experiment with a true incremental update - scheme for the duplicated resources. Of of the interesting + scheme for the duplicated resources. One of the interesting properties we can exploit here is that all the resources set in BB will have the same IDFS, so we have one IDFS computation per block with incoming threaded edges, which can lower the |