toplev.c (rest_of_compilation): Don't optimize the CFG when rebuilding, just before dbr.

* toplev.c (rest_of_compilation): Don't optimize the CFG
        when rebuilding, just before dbr.

From-SVN: r30330
This commit is contained in:
Richard Henderson 1999-11-01 13:22:59 -08:00
parent 85f29b3bb5
commit 9fd4e3280e
2 changed files with 20 additions and 15 deletions

View File

@ -1,3 +1,8 @@
Mon Nov 1 13:22:30 1999 Richard Henderson <rth@cygnus.com>
* toplev.c (rest_of_compilation): Don't optimize the CFG
when rebuilding, just before dbr.
Mon Nov 1 14:35:50 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* output.h (assemble_end_function, assemble_destructor,

View File

@ -4344,9 +4344,9 @@ rest_of_compilation (decl)
(dbr_sched_time,
{
/* ??? Keep the CFG up to date after cross-jumping. */
find_basic_blocks (insns, max_reg_num (), rtl_dump_file, 1);
find_basic_blocks (insns, max_reg_num (), rtl_dump_file, 0);
count_or_remove_death_notes (NULL, 1);
life_analysis (insns, max_reg_num (), rtl_dump_file, 1);
life_analysis (insns, max_reg_num (), rtl_dump_file, 0);
dbr_schedule (insns, rtl_dump_file);
});