tree-cfg.c (pass_split_crit_edge): Give it a name and a dump file.
authorDaniel Berlin <dberlin@dberlin.org>
Wed, 16 Jun 2004 17:17:17 +0000 (17:17 +0000)
committerDaniel Berlin <dberlin@gcc.gnu.org>
Wed, 16 Jun 2004 17:17:17 +0000 (17:17 +0000)
2004-06-16  Daniel Berlin  <dberlin@dberlin.org>

* tree-cfg.c (pass_split_crit_edge): Give it a name and a dump file.

From-SVN: r83250

gcc/ChangeLog
gcc/tree-cfg.c

index 8b1ca6fb1eff4af3e50adc20b46fda50f02697e8..99ae2a256a552fc7cb0ee20ae7095d236bbb354a 100644 (file)
@@ -1,3 +1,7 @@
+2004-06-16  Daniel Berlin  <dberlin@dberlin.org>
+
+       * tree-cfg.c (pass_split_crit_edge): Give it a name and a dump file.
+       
 2004-06-16  Dale Johannesen  <dalej@apple.com>
 
         * loop.c (loop_givs_reduce): Avoid miscompilation of
index d5ff9191d72ecaaad05509f5dc64fe3cf7f9b459..efe41ffcb2da1841b8d3d0ed5afd597889d002e9 100644 (file)
@@ -4652,7 +4652,7 @@ split_critical_edges (void)
 
 struct tree_opt_pass pass_split_crit_edges = 
 {
-  NULL,                          /* name */
+  "crited",                          /* name */
   NULL,                          /* gate */
   split_critical_edges,          /* execute */
   NULL,                          /* sub */
@@ -4663,7 +4663,7 @@ struct tree_opt_pass pass_split_crit_edges =
   PROP_no_crit_edges,            /* properties_provided */
   0,                             /* properties_destroyed */
   0,                             /* todo_flags_start */
-  0,                             /* todo_flags_finish */
+  TODO_dump_func,                             /* todo_flags_finish */
 };
 \f
 /* Emit return warnings.  */