From d39079455511dc88645e70e8fb05a3cd8eea6bff Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Wed, 10 Mar 1993 10:26:53 -0700 Subject: [PATCH] jump.c (jump_optimize, [...]): Do this regardless of BRANCH_COST if HAVE_incscc or HAVE_decscc is defined. * jump.c (jump_optimize, clause for `if (foo) b++'): Do this regardless of BRANCH_COST if HAVE_incscc or HAVE_decscc is defined. From-SVN: r3694 --- gcc/jump.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/jump.c b/gcc/jump.c index 88e753f2fbb..be7cd713061 100644 --- a/gcc/jump.c +++ b/gcc/jump.c @@ -1192,8 +1192,9 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan) TEMP4 to the earliest insn used to find the condition. */ if ((BRANCH_COST >= 2 -#ifdef HAVE_incscc +#if defined (HAVE_incscc) || defined (HAVE_decscc) || HAVE_incscc + || HAVE_decscc #endif ) && ! reload_completed -- 2.30.2