aboutsummaryrefslogtreecommitdiff
path: root/gcc/profile.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@gcc.gnu.org>2000-05-19 12:53:17 -0700
committerRichard Henderson <rth@gcc.gnu.org>2000-05-19 12:53:17 -0700
commit9ba11d5ad27ef61a6468ef5a0dbd9a8782ce8078 (patch)
tree333e24b7a9ae466ce4ae322302b06179b4f1e78c /gcc/profile.c
parent63864c8290f068039cc1db1078dbf60ce4a33ca9 (diff)
downloadgcc-9ba11d5ad27ef61a6468ef5a0dbd9a8782ce8078.zip
gcc-9ba11d5ad27ef61a6468ef5a0dbd9a8782ce8078.tar.gz
gcc-9ba11d5ad27ef61a6468ef5a0dbd9a8782ce8078.tar.bz2
jump.c (redirect_jump): Add delete_unused argument.
* jump.c (redirect_jump): Add delete_unused argument. Don't remove labels and code following when LABEL_NUSES goes to zero. (invert_jump): Likewise. (jump_optimize_1): Fix redirect/invert arguments. (do_cross_jump, thread_jumps): Likewise. * flow.c (split_edge): Likewise. * reorg.c (optimize_skip): Likewise. (reorg_redirect_jump, relax_delay_slots, dbr_schedule): Likewise. * profile.c (instrument_arcs): Likewise. * loop.c (find_and_verify_loops): Likewise. Fix indentation. * rtl.h: Update prototypes. From-SVN: r34033
Diffstat (limited to 'gcc/profile.c')
-rw-r--r--gcc/profile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/profile.c b/gcc/profile.c
index d8e2d62..69ac575 100644
--- a/gcc/profile.c
+++ b/gcc/profile.c
@@ -293,14 +293,14 @@ instrument_arcs (f, num_blocks, dump_file)
if (this_is_simplejump)
{
after = NEXT_INSN (arcptr->branch_insn);
- if (! redirect_jump (arcptr->branch_insn, new_label))
+ if (! redirect_jump (arcptr->branch_insn, new_label, 1))
/* Don't know what to do if this branch won't
redirect. */
abort ();
}
else
{
- if (! invert_jump (arcptr->branch_insn, new_label))
+ if (! invert_jump (arcptr->branch_insn, new_label, 1))
/* Don't know what to do if this branch won't invert. */
abort ();