diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-04-27 15:21:53 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-04-27 15:21:53 +0000 |
commit | a1c8251afe1e32972d55628d941addc6f7a9e1c4 (patch) | |
tree | d616d51baeef7302ec92a4621bfec981f78ff8a3 /gcc | |
parent | 4e5362a2a3fe1a3635040a8b18665819d8af6bc3 (diff) | |
download | gcc-a1c8251afe1e32972d55628d941addc6f7a9e1c4.zip gcc-a1c8251afe1e32972d55628d941addc6f7a9e1c4.tar.gz gcc-a1c8251afe1e32972d55628d941addc6f7a9e1c4.tar.bz2 |
* tree-ssa-pre.c: Fix a comment typo.
From-SVN: r98831
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-pre.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2a545fd..a086b74 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-04-27 Kazu Hirata <kazu@cs.umass.edu> + + * tree-ssa-pre.c: Fix a comment typo. + 2005-04-27 Zdenek Dvorak <dvorakz@suse.cz> PR tree-optimization/21171 diff --git a/gcc/tree-ssa-pre.c b/gcc/tree-ssa-pre.c index c2043cc..632d2b7 100644 --- a/gcc/tree-ssa-pre.c +++ b/gcc/tree-ssa-pre.c @@ -1389,7 +1389,7 @@ create_expression_by_pieces (basic_block block, tree expr, tree stmts) tsi_link_after (&tsi, newexpr, TSI_CONTINUE_LINKING); VEC_safe_push (tree, heap, inserted_exprs, newexpr); - /* Add a value handle to the temprorary. + /* Add a value handle to the temporary. The value may already exist in either NEW_SETS, or AVAIL_OUT, because we are creating the expression by pieces, and this particular piece of the expression may have been represented. There is no harm in replacing |