diff options
author | Jason Merrill <jason@redhat.com> | 2001-08-22 10:51:32 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2001-08-22 10:51:32 -0400 |
commit | 2270623af33a51bb6776a775bee05f142db83e7c (patch) | |
tree | 8b1e78e7c9911f3b44410182b978347eaa7f85b7 /gcc/loop.c | |
parent | fd10dd09c8c9de14a7b30deddd4e5dd8481b92f4 (diff) | |
download | gcc-2270623af33a51bb6776a775bee05f142db83e7c.tar.gz |
jump.c (squeeze_notes): Take parms by reference.
* jump.c (squeeze_notes): Take parms by reference. Handle END being
a squeezable note.
* rtl.h: Adjust.
* ifcvt.c (dead_or_predicable): Adjust.
* loop.c (find_and_verify_loops): Adjust.
* stmt.c (expand_end_case): Adjust.
* flow.c (merge_blocks_move_successor_nojumps): Adjust. Modify the
head and end insn pointers in the basic block, not just local copies.
(merge_blocks_move_predecessor_nojumps): Likewise.
From-SVN: r45107
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/loop.c b/gcc/loop.c index 1960ac2d4cc..8d37eb980d8 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -2749,8 +2749,7 @@ find_and_verify_loops (f, loops) /* Include the BARRIER after INSN and copy the block after LOC. */ - new_label = squeeze_notes (new_label, - last_insn_to_move); + squeeze_notes (&new_label, &last_insn_to_move); reorder_insns (new_label, last_insn_to_move, loc); /* All those insns are now in TARGET_LOOP. */ |