diff options
Diffstat (limited to 'gcc/tree-loop-distribution.c')
-rw-r--r-- | gcc/tree-loop-distribution.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/tree-loop-distribution.c b/gcc/tree-loop-distribution.c index 2d4a5d6..c380854 100644 --- a/gcc/tree-loop-distribution.c +++ b/gcc/tree-loop-distribution.c @@ -1155,8 +1155,10 @@ gate_tree_loop_distribution (void) return flag_tree_loop_distribution != 0; } -struct tree_opt_pass pass_loop_distribution = +struct gimple_opt_pass pass_loop_distribution = { + { + GIMPLE_PASS, "ldist", /* name */ gate_tree_loop_distribution, /* gate */ tree_loop_distribution, /* execute */ @@ -1168,6 +1170,6 @@ struct tree_opt_pass pass_loop_distribution = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_dump_func | TODO_verify_loops, /* todo_flags_finish */ - 0 /* letter */ + TODO_dump_func | TODO_verify_loops /* todo_flags_finish */ + } }; |