Commit 9fd4e328 by Richard Henderson

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
parent 85f29b3b
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> Mon Nov 1 14:35:50 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* output.h (assemble_end_function, assemble_destructor, * output.h (assemble_end_function, assemble_destructor,
......
...@@ -4344,9 +4344,9 @@ rest_of_compilation (decl) ...@@ -4344,9 +4344,9 @@ rest_of_compilation (decl)
(dbr_sched_time, (dbr_sched_time,
{ {
/* ??? Keep the CFG up to date after cross-jumping. */ /* ??? 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); 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); dbr_schedule (insns, rtl_dump_file);
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment