From c3a2235b61d2b5faec2e5625bb00206c5b683d78 Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Mon, 27 Sep 1993 02:52:15 +0000 Subject: [PATCH] (expand_exit_loop_if_false, bc_expand_start_cond): Use xjumpifnot, not jumpifnot. From-SVN: r5483 --- gcc/stmt.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gcc/stmt.c b/gcc/stmt.c index 799f9be39cf..8b07813c424 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -2253,7 +2253,7 @@ bc_expand_start_cond (cond, exitflag) thiscond->data.case_stmt.nominal_type = cond; bc_expand_expr (cond); - bc_emit_bytecode (jumpifnot); + bc_emit_bytecode (xjumpifnot); bc_emit_bytecode_labelref (BYTECODE_BC_LABEL (thiscond->exit_label)); #ifdef DEBUG_PRINT_CODE @@ -2547,7 +2547,8 @@ expand_exit_loop_if_false (whichloop, cond) if (output_bytecode) { bc_expand_expr (cond); - bc_expand_goto_internal (jumpifnot, BYTECODE_BC_LABEL (whichloop->exit_label), + bc_expand_goto_internal (xjumpifnot, + BYTECODE_BC_LABEL (whichloop->exit_label), NULL_RTX); } else -- 2.30.2