aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcse.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r--gcc/gcse.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c
index 77ac28e..6c7cc6b 100644
--- a/gcc/gcse.c
+++ b/gcc/gcse.c
@@ -5078,7 +5078,6 @@ static unsigned int
execute_rtl_cprop (void)
{
delete_unreachable_blocks ();
- df_note_add_problem ();
df_set_flags (DF_LR_RUN_DCE);
df_analyze ();
flag_rerun_cse_after_global_opts |= one_cprop_pass ();
@@ -5098,7 +5097,6 @@ static unsigned int
execute_rtl_pre (void)
{
delete_unreachable_blocks ();
- df_note_add_problem ();
df_analyze ();
flag_rerun_cse_after_global_opts |= one_pre_gcse_pass ();
return 0;
@@ -5120,7 +5118,6 @@ static unsigned int
execute_rtl_hoist (void)
{
delete_unreachable_blocks ();
- df_note_add_problem ();
df_analyze ();
flag_rerun_cse_after_global_opts |= one_code_hoisting_pass ();
return 0;