diff options
author | Bernhard Fischer <aldot@gcc.gnu.org> | 2008-06-18 21:35:15 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2008-06-18 21:35:15 +0200 |
commit | a7816b82f01682ba5c7d1358df3825df66698840 (patch) | |
tree | 8af4712271329dd09f4b33d712917884196bd6c0 | |
parent | 45f09afb96650a355fa4de7974494657910e916e (diff) | |
download | gcc-a7816b82f01682ba5c7d1358df3825df66698840.zip gcc-a7816b82f01682ba5c7d1358df3825df66698840.tar.gz gcc-a7816b82f01682ba5c7d1358df3825df66698840.tar.bz2 |
tree-vn.c: Fix typo in comment.
2006-06-18 Bernhard Fischer <aldot@gcc.gnu.org>
* gcc/tree-vn.c: Fix typo in comment.
From-SVN: r136906
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-vn.c | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9a511c6..5e15946 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-06-18 Bernhard Fischer <aldot@gcc.gnu.org> + + * gcc/tree-vn.c: Fix typo in comment. + 2008-06-18 Jan Hubicka <jh@suse.cz> * cgraphunit.c (cgraph_optimize): Output debug info when doing diff --git a/gcc/tree-vn.c b/gcc/tree-vn.c index 4960ac5..c3cc239 100644 --- a/gcc/tree-vn.c +++ b/gcc/tree-vn.c @@ -36,7 +36,7 @@ along with GCC; see the file COPYING3. If not see /* Most of this is PRE specific. The real grunt work is done in tree-ssa-sccvn.c. This is where the lookup and insertion - functions, etc, can be found */ + functions, etc, can be found. */ /* Create and return a new value handle node of type TYPE. */ @@ -51,8 +51,6 @@ make_value_handle (tree type) return vh; } - - /* Compare two expressions E1 and E2 and return true if they are equal. */ @@ -136,7 +134,6 @@ print_creation_to_file (tree v, tree expr, VEC (tree, gc) *vuses) fprintf (dump_file, "\n"); } - /* Sort the VUSE array so that we can do equality comparisons quicker on two vuse vecs. */ @@ -162,6 +159,7 @@ sort_vuses_heap (VEC (tree,heap) *vuses) sizeof (tree), operand_build_cmp); } + /* Insert EXPR into VALUE_TABLE with value VAL, and add expression EXPR to the value set for value VAL. */ @@ -232,7 +230,6 @@ vn_add_with_vuses (tree expr, tree val, VEC (tree, gc) *vuses) add_to_value (val, expr); } - /* Lookup EXPR in the value numbering tables and return the result, if we have one. */ |