Commit e27a4eaf by Zdenek Dvorak Committed by Jan Hubicka

cfgrtl.c (merge_blocks_nomove): Use set_block_for_insn instead of assigning to…

cfgrtl.c (merge_blocks_nomove): Use set_block_for_insn instead of assigning to BLOCK_FOR_INSN directly.

	* cfgrtl.c (merge_blocks_nomove): Use set_block_for_insn instead of
	assigning to BLOCK_FOR_INSN directly.

From-SVN: r51475
parent 04b7c941
Wed Mar 27 22:54:14 CET 2002 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* cfgrtl.c (merge_blocks_nomove): Use set_block_for_insn instead of
assigning to BLOCK_FOR_INSN directly.
Wed Mar 27 22:33:05 CET 2002 Jan Hubicka <jh@suse.cz> Wed Mar 27 22:33:05 CET 2002 Jan Hubicka <jh@suse.cz>
* i386.c (ix86_output_addr_diff_elt): Remove binutils bug workaround. * i386.c (ix86_output_addr_diff_elt): Remove binutils bug workaround.
......
...@@ -661,9 +661,9 @@ merge_blocks_nomove (a, b) ...@@ -661,9 +661,9 @@ merge_blocks_nomove (a, b)
rtx x; rtx x;
for (x = a_end; x != b_end; x = NEXT_INSN (x)) for (x = a_end; x != b_end; x = NEXT_INSN (x))
BLOCK_FOR_INSN (x) = a; set_block_for_insn (x, a);
BLOCK_FOR_INSN (b_end) = a; set_block_for_insn (b_end, a);
} }
a_end = b_end; a_end = b_end;
......
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