diff options
Diffstat (limited to 'gcc/mode-switching.c')
-rw-r--r-- | gcc/mode-switching.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/mode-switching.c b/gcc/mode-switching.c index 9e8ad62..a781cb2 100644 --- a/gcc/mode-switching.c +++ b/gcc/mode-switching.c @@ -736,7 +736,7 @@ rest_of_handle_mode_switching (void) struct tree_opt_pass pass_mode_switching = { - NULL, /* name */ + "mode-sw", /* name */ gate_mode_switching, /* gate */ rest_of_handle_mode_switching, /* execute */ NULL, /* sub */ @@ -747,6 +747,6 @@ struct tree_opt_pass pass_mode_switching = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - 0, /* todo_flags_finish */ + TODO_dump_func, /* todo_flags_finish */ 0 /* letter */ }; |