diff options
Diffstat (limited to 'gcc/tree-outof-ssa.c')
-rw-r--r-- | gcc/tree-outof-ssa.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c index be8a459f402..12ce1b9c692 100644 --- a/gcc/tree-outof-ssa.c +++ b/gcc/tree-outof-ssa.c @@ -1466,8 +1466,10 @@ rewrite_out_of_ssa (void) /* Define the parameters of the out of SSA pass. */ -struct tree_opt_pass pass_del_ssa = +struct gimple_opt_pass pass_del_ssa = { + { + GIMPLE_PASS, "optimized", /* name */ NULL, /* gate */ rewrite_out_of_ssa, /* execute */ @@ -1483,6 +1485,6 @@ struct tree_opt_pass pass_del_ssa = | TODO_verify_stmts, /* todo_flags_start */ TODO_dump_func | TODO_ggc_collect - | TODO_remove_unused_locals, /* todo_flags_finish */ - 0 /* letter */ + | TODO_remove_unused_locals /* todo_flags_finish */ + } }; |