mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-30 03:54:41 +08:00
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
This commit is contained in:
parent
04b7c941e9
commit
e27a4eaf4f
@ -1,3 +1,8 @@
|
||||
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>
|
||||
|
||||
* i386.c (ix86_output_addr_diff_elt): Remove binutils bug workaround.
|
||||
|
@ -661,9 +661,9 @@ merge_blocks_nomove (a, b)
|
||||
rtx 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;
|
||||
|
Loading…
Reference in New Issue
Block a user