Commit 02fa1284 by James Van Artsdalen

(find_blocks): Undo previous change to block delineation algorithm.

(reg_to_stack): Make algorithm identical to that in find_blocks.

From-SVN: r6702
parent c5ffba1a
......@@ -305,7 +305,7 @@ reg_to_stack (first, file)
/* Count the basic blocks. Also find maximum insn uid. */
{
register RTX_CODE prev_code = JUMP_INSN;
register RTX_CODE prev_code = BARRIER;
register RTX_CODE code;
max_uid = 0;
......@@ -1176,7 +1176,7 @@ find_blocks (first)
{
register rtx insn;
register int block;
register RTX_CODE prev_code = JUMP_INSN;
register RTX_CODE prev_code = BARRIER;
register RTX_CODE code;
rtx label_value_list = 0;
......
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