summaryrefslogtreecommitdiff
path: root/gcc/ree.c
diff options
context:
space:
mode:
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2013-04-05 19:23:17 +0000
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2013-04-05 19:23:17 +0000
commitb257b4124e4e6870c97a794dbf622f2e5beaeb90 (patch)
treecc55e3c8d03e775e0ae127a1d61cb22dd0973f7f /gcc/ree.c
parent353cf59ab0f2faebfb9b9164b2dfe6784d126c37 (diff)
downloadgcc-b257b4124e4e6870c97a794dbf622f2e5beaeb90.tar.gz
* bb-reorder.c (fix_crossing_unconditional_branches): Remove a
set-but-unused variable. * cgraph.c (cgraph_release_function_body): Clear cfun->cfg to make basic blocks of released function bodies garbage-collectable. * ree.c (find_and_remove_re): Do not call df_finish_pass here. (struct rtl_opt_pass): Add TODO_df_finish. * rtl.def (DEFINE_SUBST, DEFINE_SUBST_ATTR): Add documentation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@197533 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ree.c')
-rw-r--r--gcc/ree.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/ree.c b/gcc/ree.c
index ff96df8a016..c60921239a7 100644
--- a/gcc/ree.c
+++ b/gcc/ree.c
@@ -919,8 +919,6 @@ find_and_remove_re (void)
if (dump_file && num_re_opportunities > 0)
fprintf (dump_file, "Elimination opportunities = %d realized = %d\n",
num_re_opportunities, num_realized);
-
- df_finish_pass (false);
}
/* Find and remove redundant extensions. */
@@ -958,7 +956,8 @@ struct rtl_opt_pass pass_ree =
0, /* properties_provided */
0, /* properties_destroyed */
0, /* todo_flags_start */
- TODO_ggc_collect |
- TODO_verify_rtl_sharing, /* todo_flags_finish */
+ TODO_df_finish
+ | TODO_ggc_collect
+ | TODO_verify_rtl_sharing, /* todo_flags_finish */
}
};