diff options
Diffstat (limited to 'gcc/tree-optimize.c')
-rw-r--r-- | gcc/tree-optimize.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-optimize.c b/gcc/tree-optimize.c index 7089c27..da7a2e7 100644 --- a/gcc/tree-optimize.c +++ b/gcc/tree-optimize.c @@ -118,7 +118,7 @@ execute_cleanup_cfg_post_optimizing (void) static struct tree_opt_pass pass_cleanup_cfg_post_optimizing = { - NULL, /* name */ + "final_cleanup", /* name */ NULL, /* gate */ execute_cleanup_cfg_post_optimizing, /* execute */ NULL, /* sub */ @@ -129,7 +129,7 @@ static struct tree_opt_pass pass_cleanup_cfg_post_optimizing = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - 0, /* todo_flags_finish */ + TODO_dump_func, /* todo_flags_finish */ 0 /* letter */ }; |