tree-vn.c: Fix typo in comment.
authorBernhard Fischer <aldot@gcc.gnu.org>
Wed, 18 Jun 2008 19:35:15 +0000 (21:35 +0200)
committerBernhard Reutner-Fischer <aldot@gcc.gnu.org>
Wed, 18 Jun 2008 19:35:15 +0000 (21:35 +0200)
2006-06-18  Bernhard Fischer  <aldot@gcc.gnu.org>

* gcc/tree-vn.c: Fix typo in comment.

From-SVN: r136906

gcc/ChangeLog
gcc/tree-vn.c

index 9a511c659c690a071830736ed52a2a1cbf85eca2..5e159468dee7ade972c3d851c126977bcd3ffb4e 100644 (file)
@@ -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
index 4960ac5aea34f14ce7a6475fc8d88b1e90c537f7..c3cc239b19ff4195b4c86b63900e48875651abda 100644 (file)
@@ -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.  */