Commit daaab00a by Jan Hubicka Committed by Jan Hubicka

* m68hc11.c (m68hc11_reorg): Do not rebuild CFG.

From-SVN: r55500
parent 63c574cc
Wed Jul 17 00:22:39 CEST 2002 Jan Hubicka <jh@suse.cz>
* m68hc11.c (m68hc11_reorg): Do not rebuild CFG.
Wed Jul 17 00:20:48 CEST 2002 Jan Hubicka <jh@suse.cz> Wed Jul 17 00:20:48 CEST 2002 Jan Hubicka <jh@suse.cz>
* i386.md (prefetch): Fix for 64bit mode. * i386.md (prefetch): Fix for 64bit mode.
......
...@@ -5076,11 +5076,13 @@ m68hc11_reorg (first) ...@@ -5076,11 +5076,13 @@ m68hc11_reorg (first)
z_replacement_completed = 1; z_replacement_completed = 1;
m68hc11_reassign_regs (first); m68hc11_reassign_regs (first);
if (optimize)
compute_bb_for_insn ();
/* After some splitting, there are some oportunities for CSE pass. /* After some splitting, there are some oportunities for CSE pass.
This happens quite often when 32-bit or above patterns are split. */ This happens quite often when 32-bit or above patterns are split. */
if (optimize > 0 && split_done) if (optimize > 0 && split_done)
{ {
find_basic_blocks (first, max_reg_num (), 0);
reload_cse_regs (first); reload_cse_regs (first);
} }
...@@ -5110,7 +5112,6 @@ m68hc11_reorg (first) ...@@ -5110,7 +5112,6 @@ m68hc11_reorg (first)
} }
} }
find_basic_blocks (first, max_reg_num (), 0);
life_analysis (first, 0, PROP_REG_INFO | PROP_DEATH_NOTES); life_analysis (first, 0, PROP_REG_INFO | PROP_DEATH_NOTES);
} }
......
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