summaryrefslogtreecommitdiff
path: root/gcc/loop.c
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2001-08-22 10:51:32 -0400
committerJason Merrill <jason@gcc.gnu.org>2001-08-22 10:51:32 -0400
commit2270623af33a51bb6776a775bee05f142db83e7c (patch)
tree8b1e78e7c9911f3b44410182b978347eaa7f85b7 /gcc/loop.c
parentfd10dd09c8c9de14a7b30deddd4e5dd8481b92f4 (diff)
downloadgcc-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.c3
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. */