diff options
author | Volker Reichelt <reichelt@igpm.rwth-aachen.de> | 2005-07-28 16:30:00 +0000 |
---|---|---|
committer | Volker Reichelt <reichelt@gcc.gnu.org> | 2005-07-28 16:30:00 +0000 |
commit | 206048bd415aa4a985b6a2929b91bb86962f468f (patch) | |
tree | 2ed1920be939f29875e5f270976036d79e5714a2 /gcc/tree-ssa-dom.c | |
parent | c98718390719e6c7e7ded4b6c74abb72cab47022 (diff) | |
download | gcc-206048bd415aa4a985b6a2929b91bb86962f468f.tar.gz |
builtins.c: Fix comment typo(s).
* builtins.c: Fix comment typo(s).
* genautomata.c: Likewise.
* gimplify.c: Likewise.
* tree-dfa.c: Likewise.
* tree-flow-inline.h: Likewise.
* tree-into-ssa.c: Likewise.
* tree-ssa-alias.c: Likewise.
* tree-ssa-ccp.c: Likewise.
* tree-ssa-copy.c: Likewise.
* tree-ssa-dce.c: Likewise.
* tree-ssa-dom.c: Likewise.
* tree-ssa-operands.c: Likewise.
* tree-tailcall.c: Likewise.
* tree-vectorizer.c: Likewise.
* tree-vrp.c: Likewise.
* tree.c: Likewise.
From-SVN: r102491
Diffstat (limited to 'gcc/tree-ssa-dom.c')
-rw-r--r-- | gcc/tree-ssa-dom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index 7b79c79caa3..691887ce40f 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -884,7 +884,7 @@ dom_opt_initialize_block (struct dom_walk_data *walk_data ATTRIBUTE_UNUSED, } /* Given an expression EXPR (a relational expression or a statement), - initialize the hash table element pointed by by ELEMENT. */ + initialize the hash table element pointed to by ELEMENT. */ static void initialize_hash_element (tree expr, tree lhs, struct expr_hash_elt *element) @@ -2851,7 +2851,7 @@ cprop_into_stmt (tree stmt) } -/* Optimize the statement pointed by iterator SI. +/* Optimize the statement pointed to by iterator SI. We try to perform some simplistic global redundancy elimination and constant propagation: @@ -3061,7 +3061,7 @@ update_rhs_and_lookup_avail_expr (tree stmt, tree new_rhs, bool insert) NULL_TREE. Also, when an expression is first inserted in the AVAIL_EXPRS table, it - is also added to the stack pointed by BLOCK_AVAIL_EXPRS_P, so that they + is also added to the stack pointed to by BLOCK_AVAIL_EXPRS_P, so that they can be removed when we finish processing this block and its children. NOTE: This function assumes that STMT is a MODIFY_EXPR node that |