diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-01 21:22:59 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-11-01 21:22:59 +0000 |
commit | 1789a1102740075363aee258f6b2046e2031b05f (patch) | |
tree | 5c2908f67d89fbfcbceb24a80ab51e68bc39b169 /gcc/toplev.c | |
parent | 41a736956a106241d5002c8a2103079878b82e0a (diff) | |
download | gcc-1789a1102740075363aee258f6b2046e2031b05f.tar.gz |
* toplev.c (rest_of_compilation): Don't optimize the CFG
when rebuilding, just before dbr.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30330 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 64fc23e1df4..503ada9687f 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -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); }); |