Commit 4940cd60 by David S. Miller Committed by David S. Miller

rtlanal.c (reg_overlap_mentioned_p): Handle CONCAT.

1999-12-15  David S. Miller  <davem@redhat.com>

	* rtlanal.c (reg_overlap_mentioned_p): Handle CONCAT.

From-SVN: r30956
parent 35836a43
1999-12-15 David S. Miller <davem@redhat.com>
* rtlanal.c (reg_overlap_mentioned_p): Handle CONCAT.
Wed Dec 15 15:05:30 MET 1999 Jan Hubicka <hubicka@freesoft.cz>
* flow.c (calculate_loop_depth): Make global, remove prototype,
......
......@@ -964,6 +964,13 @@ reg_overlap_mentioned_p (x, in)
return 1;
return 0;
}
else if (GET_CODE (x) == CONCAT)
{
if (reg_overlap_mentioned_p (XEXP (x, 0), in)
|| reg_overlap_mentioned_p (XEXP (x, 1), in))
return 1;
return 0;
}
else
abort ();
......
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