Commit 9fcb01de by Jan Hubicka Committed by Jan Hubicka

cse.c (cse_extended_basic_block): Move optimize_bb_for_speed_p at correct place.

	* cse.c (cse_extended_basic_block): Move optimize_bb_for_speed_p
	at correct place.

From-SVN: r160669
parent 3be09157
2010-06-12 Jan Hubicka <jh@suse.cz>
* cse.c (cse_extended_basic_block): Move optimize_bb_for_speed_p
at correct place.
2010-06-12 Bernd Schmidt <bernds@codesourcery.com> 2010-06-12 Bernd Schmidt <bernds@codesourcery.com>
* config/arm/arm.c (thumb2_reorg): Fix errors in previous change. * config/arm/arm.c (thumb2_reorg): Fix errors in previous change.
......
...@@ -6315,9 +6315,9 @@ cse_extended_basic_block (struct cse_basic_block_data *ebb_data) ...@@ -6315,9 +6315,9 @@ cse_extended_basic_block (struct cse_basic_block_data *ebb_data)
} }
} }
optimize_this_for_speed_p = optimize_bb_for_speed_p (bb);
FOR_BB_INSNS (bb, insn) FOR_BB_INSNS (bb, insn)
{ {
optimize_this_for_speed_p = optimize_bb_for_speed_p (bb);
/* If we have processed 1,000 insns, flush the hash table to /* If we have processed 1,000 insns, flush the hash table to
avoid extreme quadratic behavior. We must not include NOTEs avoid extreme quadratic behavior. We must not include NOTEs
in the count since there may be more of them when generating in the count since there may be more of them when generating
......
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