diff options
Diffstat (limited to 'gcc/rtl-factoring.c')
-rw-r--r-- | gcc/rtl-factoring.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gcc/rtl-factoring.c b/gcc/rtl-factoring.c index e06eac3d09c..864836e07b9 100644 --- a/gcc/rtl-factoring.c +++ b/gcc/rtl-factoring.c @@ -1394,9 +1394,8 @@ rtl_seqabstr (void) /* Update notes. */ count_or_remove_death_notes (NULL, 1); - life_analysis (dump_file, PROP_DEATH_NOTES | - PROP_SCAN_DEAD_CODE | - PROP_KILL_DEAD_CODE); + life_analysis (PROP_DEATH_NOTES | PROP_SCAN_DEAD_CODE + | PROP_KILL_DEAD_CODE); /* Extra cleanup. */ cleanup_cfg (CLEANUP_EXPENSIVE | @@ -1418,9 +1417,7 @@ gate_rtl_seqabstr (void) static void rest_of_rtl_seqabstr (void) { - life_analysis (dump_file, PROP_DEATH_NOTES | - PROP_SCAN_DEAD_CODE | - PROP_KILL_DEAD_CODE); + life_analysis (PROP_DEATH_NOTES | PROP_SCAN_DEAD_CODE | PROP_KILL_DEAD_CODE); cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE | |