diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9a511c659c6..5e159468dee 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-06-18 Bernhard Fischer + + * gcc/tree-vn.c: Fix typo in comment. + 2008-06-18 Jan Hubicka * cgraphunit.c (cgraph_optimize): Output debug info when doing diff --git a/gcc/tree-vn.c b/gcc/tree-vn.c index 4960ac5aea3..c3cc239b19f 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. */