From: Daniel Berlin Date: Wed, 16 Jun 2004 17:17:17 +0000 (+0000) Subject: tree-cfg.c (pass_split_crit_edge): Give it a name and a dump file. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5d44aeed9a79c8a149af3c5c22b697ac0beea203;p=gcc.git tree-cfg.c (pass_split_crit_edge): Give it a name and a dump file. 2004-06-16 Daniel Berlin * tree-cfg.c (pass_split_crit_edge): Give it a name and a dump file. From-SVN: r83250 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8b1ca6fb1ef..99ae2a256a5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-06-16 Daniel Berlin + + * tree-cfg.c (pass_split_crit_edge): Give it a name and a dump file. + 2004-06-16 Dale Johannesen * loop.c (loop_givs_reduce): Avoid miscompilation of diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index d5ff9191d72..efe41ffcb2d 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -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 */ }; /* Emit return warnings. */