]> gcc.gnu.org Git - gcc.git/commitdiff
jump.c (jump_optimize, [...]): Do this regardless of BRANCH_COST if HAVE_incscc or...
authorJeff Law <law@gcc.gnu.org>
Wed, 10 Mar 1993 17:26:53 +0000 (10:26 -0700)
committerJeff Law <law@gcc.gnu.org>
Wed, 10 Mar 1993 17:26:53 +0000 (10:26 -0700)
* 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

index 88e753f2fbb3beef2acde9e94497b9ae93e0a2e5..be7cd713061ed6696b7363ed508411379fc98606 100644 (file)
@@ -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
This page took 0.103113 seconds and 5 git commands to generate.