aboutsummaryrefslogtreecommitdiff
path: root/gcc/except.c
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1999-02-14 20:08:39 +0000
committerJeff Law <law@gcc.gnu.org>1999-02-14 13:08:39 -0700
commitc5d5d461419c704497a2635330bf0cd5c5014eab (patch)
treec29b256d986d0f06f6c18f5de1ad3725b91cd3e1 /gcc/except.c
parentd4ddd7b97734bcfa0aa968b50d9d3439d4f302c3 (diff)
downloadgcc-c5d5d461419c704497a2635330bf0cd5c5014eab.zip
gcc-c5d5d461419c704497a2635330bf0cd5c5014eab.tar.gz
gcc-c5d5d461419c704497a2635330bf0cd5c5014eab.tar.bz2
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
Diffstat (limited to 'gcc/except.c')
-rw-r--r--gcc/except.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/except.c b/gcc/except.c
index 60e0d3c..ae8fea1 100644
--- a/gcc/except.c
+++ b/gcc/except.c
@@ -1767,9 +1767,9 @@ start_catch_handler (rtime)
0, SImode, 1, rtime_address, Pmode);
/* Did the function return true? */
- emit_cmp_insn (call_rtx, const0_rtx, EQ, NULL_RTX,
- GET_MODE (call_rtx), 0 ,0);
- emit_jump_insn (gen_beq (catchstack.top->entry->false_label));
+ emit_cmp_and_jump_insns (call_rtx, const0_rtx, EQ, NULL_RTX,
+ GET_MODE (call_rtx), 0, 0,
+ catchstack.top->entry->false_label);
}
}