From 7f1c097d36682769f1f3f8fd72c7845d545104ed Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Thu, 25 May 2000 23:38:49 +0200 Subject: combine.c (try_combine): Use any_condjump_p... * combine.c (try_combine): Use any_condjump_p, any_uncondjump_p and pc_set at the place of simplejump_p and condjump_p. * cse.c (record_jump_equiv): Likewise. * emit-rtl.c (emit): Likewise. * explow.c (find_next_ref): Likewise. * flow.c (tidy_fallthru_edge): Likewise. (init_propagate_block_info): Likewise. * gcse.c (delete_null_pointer_checks): Likewise. * ifcvt.c (cond_exec_get_condition, noce_get_condition, dead_or_predicable): Likewise. * integrate.c (copy_insn_list): Likewise. * loop.c (scan_loop, verify_dominator, find_and_verify_loops, for_each_insn_in_loop, check_dbra_loop, get_condition, insert_bct, load_mems): Likewise. * resource.c (find_dead_or_set_registers): Likewise. * sibcalls.c (simplejump_p): Likewise. * unroll.c (copy_loop_body, reg_dead_after_loop): Likewise. From-SVN: r34175 --- gcc/integrate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/integrate.c') diff --git a/gcc/integrate.c b/gcc/integrate.c index 8e0f910..5329574 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -1400,7 +1400,7 @@ copy_insn_list (insns, map, static_chain_value) /* If this used to be a conditional jump insn but whose branch direction is now know, we must do something special. */ - if (condjump_p (insn) && ! simplejump_p (insn) && map->last_pc_value) + if (any_condjump_p (insn) && onlyjump_p (insn) && map->last_pc_value) { #ifdef HAVE_cc0 /* If the previous insn set cc0 for us, delete it. */ -- cgit v1.1