Commit f5f53ae3 by John Wehle Committed by John Wehle

cfganal.c (flow_depth_first_order_compute): Always increment dfsnum.

	* cfganal.c (flow_depth_first_order_compute): Always
	increment dfsnum.

From-SVN: r47919
parent bf3b866e
Tue Dec 11 23:54:27 EST 2001 John Wehle (john@feith.com)
* cfganal.c (flow_depth_first_order_compute): Always
increment dfsnum.
2001-11-30 Alan Matsuoka <alanm@redhat.com>
* combine.c (combine_simplify_rtx) : Can't simplify
......
......@@ -874,7 +874,9 @@ flow_depth_first_order_compute (dfs_order, rc_order)
SET_BIT (visited, dest->index);
if (dfs_order)
dfs_order[dfsnum++] = dest->index;
dfs_order[dfsnum] = dest->index;
dfsnum++;
if (dest->succ)
{
......
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