Commit 75b22640 by Zdenek Dvorak Committed by Zdenek Dvorak

re PR rtl-optimization/33224 (failing rtl iv analysis (maybe due to df))

	PR rtl-optimization/33224
	* loop-iv.c (latch_dominating_def): Check that the definition belongs
	to the analysed region.

From-SVN: r127996
parent beb32b59
2007-08-31 Zdenek Dvorak <ook@ucw.cz>
PR rtl-optimization/33224
* loop-iv.c (latch_dominating_def): Check that the definition belongs
to the analysed region.
2007-08-31 Richard Guenther <rguenther@suse.de>
* function.c (allocate_struct_function): Do not set
......
......@@ -301,7 +301,8 @@ latch_dominating_def (rtx reg, struct df_ref **def)
for (adef = DF_REG_DEF_CHAIN (regno); adef; adef = adef->next_reg)
{
if (!bitmap_bit_p (bb_info->out, DF_REF_ID (adef)))
if (!bitmap_bit_p (df->blocks_to_analyze, DF_REF_BB (adef)->index)
|| !bitmap_bit_p (bb_info->out, DF_REF_ID (adef)))
continue;
/* More than one reaching definition. */
......
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