]> gcc.gnu.org Git - gcc.git/commitdiff
* tree-into-ssa.c: Remove obsolete comments.
authorKazu Hirata <kazu@cs.umass.edu>
Mon, 21 Mar 2005 17:04:24 +0000 (17:04 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Mon, 21 Mar 2005 17:04:24 +0000 (17:04 +0000)
From-SVN: r96813

gcc/ChangeLog
gcc/tree-into-ssa.c

index 68a02d24975a1009c673ea030b266e6aa53bb8e6..580e7bb8182b0acabbb718b3d75e8be03035ac61 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-21  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * tree-into-ssa.c: Remove obsolete comments.
+
 2005-03-21  Richard Guenther  <rguenth@gcc.gnu.org>
 
        * tree-ssa-loop.c (gate_tree_complete_unroll): Run complete
index 37ad103c67f2b5c9196e34312fda75f41de3fbbd..46470a407bbeaaa6ecf902d7265bb36f39dc7ca0 100644 (file)
@@ -1271,9 +1271,8 @@ mark_def_site_blocks (void)
       those variables are removed from the flow graph so that they can
       be computed again.
 
-   2- Compute dominance frontier and immediate dominators, needed to
-      insert PHI nodes and rename the function in dominator tree
-      order.
+   2- Compute dominance frontier, needed to insert PHI nodes and
+      rename the function in dominator tree order.
 
    3- Find and mark all the blocks that define variables
       (mark_def_site_blocks).
@@ -1319,9 +1318,7 @@ rewrite_into_ssa (bool all)
 
   mark_def_site_blocks ();
 
-  /* Initialize dominance frontier and immediate dominator bitmaps. 
-     Also count the number of predecessors for each block.  Doing so
-     can save significant time during PHI insertion for large graphs.  */
+  /* Initialize dominance frontier.  */
   dfs = (bitmap *) xmalloc (last_basic_block * sizeof (bitmap *));
   FOR_EACH_BB (bb)
     dfs[bb->index] = BITMAP_ALLOC (NULL);
This page took 0.076936 seconds and 5 git commands to generate.