diff options
Diffstat (limited to 'gcc/cse.c')
-rw-r--r-- | gcc/cse.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gcc/cse.c b/gcc/cse.c index 82ea2b70da1..ef135e99b8f 100644 --- a/gcc/cse.c +++ b/gcc/cse.c @@ -7011,8 +7011,10 @@ rest_of_handle_cse (void) return 0; } -struct tree_opt_pass pass_cse = +struct rtl_opt_pass pass_cse = { + { + RTL_PASS, "cse1", /* name */ gate_handle_cse, /* gate */ rest_of_handle_cse, /* execute */ @@ -7028,7 +7030,7 @@ struct tree_opt_pass pass_cse = TODO_dump_func | TODO_ggc_collect | TODO_verify_flow, /* todo_flags_finish */ - 's' /* letter */ + } }; @@ -7072,8 +7074,10 @@ rest_of_handle_cse2 (void) } -struct tree_opt_pass pass_cse2 = +struct rtl_opt_pass pass_cse2 = { + { + RTL_PASS, "cse2", /* name */ gate_handle_cse2, /* gate */ rest_of_handle_cse2, /* execute */ @@ -7088,7 +7092,7 @@ struct tree_opt_pass pass_cse2 = TODO_df_finish | TODO_verify_rtl_sharing | TODO_dump_func | TODO_ggc_collect | - TODO_verify_flow, /* todo_flags_finish */ - 't' /* letter */ + TODO_verify_flow /* todo_flags_finish */ + } }; |