diff options
Diffstat (limited to 'gcc/matrix-reorg.c')
-rw-r--r-- | gcc/matrix-reorg.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gcc/matrix-reorg.c b/gcc/matrix-reorg.c index 38b0d5e..8a2734d 100644 --- a/gcc/matrix-reorg.c +++ b/gcc/matrix-reorg.c @@ -2317,7 +2317,10 @@ gate_matrix_reorg (void) return flag_ipa_matrix_reorg && flag_whole_program; } -struct tree_opt_pass pass_ipa_matrix_reorg = { +struct simple_ipa_opt_pass pass_ipa_matrix_reorg = +{ + { + SIMPLE_IPA_PASS, "matrix-reorg", /* name */ gate_matrix_reorg, /* gate */ matrix_reorg, /* execute */ @@ -2329,6 +2332,6 @@ struct tree_opt_pass pass_ipa_matrix_reorg = { PROP_trees, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_dump_cgraph | TODO_dump_func, /* todo_flags_finish */ - 0 /* letter */ + TODO_dump_cgraph | TODO_dump_func /* todo_flags_finish */ + } }; |