From c5d5d461419c704497a2635330bf0cd5c5014eab Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Sun, 14 Feb 1999 20:08:39 +0000 Subject: except.c (start_catch_handler): Use emit_cmp_and_jump_insns. * except.c (start_catch_handler): Use emit_cmp_and_jump_insns. * explow.c (probe_stack_range): Likewise. * expmed.c (do_cmp_and_jump): Likewise. * expr.c (store_expr, expand_expr, expand_builtin): Likewise. (do_tablejump): Likewise. * stmt.c (expand_expr_stmt, expand_end_case): Likewise. (do_jump_if_equal, emit_case_nodes): Likewise. * optabs.c (emit_cmp_and_jump_insns): Clarify comments. If UNSIGNEDP, then convert comparison to an unsigned code before emitting the jump. (expand_float, expand_fix): Use emit_cmp_and_jump_insns. From-SVN: r25205 --- gcc/expmed.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'gcc/expmed.c') diff --git a/gcc/expmed.c b/gcc/expmed.c index ec7d0e9..cf3bbbd 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -4574,9 +4574,6 @@ do_cmp_and_jump (arg1, arg2, op, mode, label) } else { - emit_cmp_insn(arg1, arg2, op, NULL_RTX, mode, 0, 0); - if (bcc_gen_fctn[(int) op] == 0) - abort (); - emit_jump_insn ((*bcc_gen_fctn[(int) op]) (label)); + emit_cmp_and_jump_insns (arg1, arg2, op, NULL_RTX, mode, 0, 0, label); } } -- cgit v1.1