diff options
Diffstat (limited to 'gcc/tree-ssa-reassoc.c')
-rw-r--r-- | gcc/tree-ssa-reassoc.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/tree-ssa-reassoc.c b/gcc/tree-ssa-reassoc.c index 6e6f5f7..19e1039 100644 --- a/gcc/tree-ssa-reassoc.c +++ b/gcc/tree-ssa-reassoc.c @@ -1528,8 +1528,10 @@ gate_tree_ssa_reassoc (void) return flag_tree_reassoc != 0; } -struct tree_opt_pass pass_reassoc = +struct gimple_opt_pass pass_reassoc = { + { + GIMPLE_PASS, "reassoc", /* name */ gate_tree_ssa_reassoc, /* gate */ execute_reassoc, /* execute */ @@ -1541,6 +1543,6 @@ struct tree_opt_pass pass_reassoc = 0, /* properties_provided */ 0, /* properties_destroyed */ 0, /* todo_flags_start */ - TODO_dump_func | TODO_ggc_collect | TODO_verify_ssa, /* todo_flags_finish */ - 0 /* letter */ + TODO_dump_func | TODO_ggc_collect | TODO_verify_ssa /* todo_flags_finish */ + } }; |