diff options
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/flow.c b/gcc/flow.c index 1f81530722d..ad4ab7c4d07 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -354,7 +354,7 @@ first_insn_after_basic_block_note (basic_block block) FLAGS is a set of PROP_* flags to be used in accumulating flow info. */ void -life_analysis (FILE *file, int flags) +life_analysis (int flags) { #ifdef ELIMINABLE_REGS int i; @@ -437,8 +437,8 @@ life_analysis (FILE *file, int flags) if (optimize && (flags & PROP_SCAN_DEAD_STORES)) end_alias_analysis (); - if (file) - dump_flow_info (file); + if (dump_file) + dump_flow_info (dump_file); /* Removing dead insns should have made jumptables really dead. */ delete_dead_jumptables (); @@ -4637,7 +4637,7 @@ rest_of_handle_life (void) { regclass_init (); - life_analysis (dump_file, PROP_FINAL); + life_analysis (PROP_FINAL); if (optimize) cleanup_cfg (CLEANUP_EXPENSIVE | CLEANUP_UPDATE_LIFE | CLEANUP_LOG_LINKS | (flag_thread_jumps ? CLEANUP_THREADING : 0)); |