Commit d1c6a401 by Josef Zlomek Committed by Josef Zlomek

gcse.c (remove_reachable_equiv_notes): Delete notes also in blocks which have kill flag set.

	* gcse.c (remove_reachable_equiv_notes): Delete notes also in
	blocks which have kill flag set.

From-SVN: r81322
parent 99c012a8
2004-04-30 Josef Zlomek <zlomekj@suse.cz>
* gcse.c (remove_reachable_equiv_notes): Delete notes also in
blocks which have kill flag set.
2004-04-29 Ben Elliston <bje@au.ibm.com>
* configure.ac (--with-as): Abort if user-supplied assembler
......
......@@ -7797,8 +7797,7 @@ remove_reachable_equiv_notes (basic_block bb, struct ls_expr *smexpr)
bb = act->dest;
if (bb == EXIT_BLOCK_PTR
|| TEST_BIT (visited, bb->index)
|| TEST_BIT (ae_kill[bb->index], smexpr->index))
|| TEST_BIT (visited, bb->index))
{
act = act->succ_next;
continue;
......
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