diff options
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index b812b33..0fca12d 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -13035,8 +13035,10 @@ rest_of_handle_combine (void) return 0; } -struct tree_opt_pass pass_combine = +struct rtl_opt_pass pass_combine = { + { + RTL_PASS, "combine", /* name */ gate_handle_combine, /* gate */ rest_of_handle_combine, /* execute */ @@ -13051,6 +13053,6 @@ struct tree_opt_pass pass_combine = TODO_dump_func | TODO_df_finish | TODO_verify_rtl_sharing | TODO_ggc_collect, /* todo_flags_finish */ - 'c' /* letter */ + } }; |