aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1993-03-12 17:25:25 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1993-03-12 17:25:25 -0500
commit48f16828957b8cd783d3fb80c968ff9c9151ec90 (patch)
treeeaa5ad0575b85b39d3c7d588a5e844e82a423d9c
parentfe4435d988378b1ee56c2dc0c387d729cb44421d (diff)
downloadgcc-48f16828957b8cd783d3fb80c968ff9c9151ec90.zip
gcc-48f16828957b8cd783d3fb80c968ff9c9151ec90.tar.gz
gcc-48f16828957b8cd783d3fb80c968ff9c9151ec90.tar.bz2
(jump_optimize): Fix bug in last change.
From-SVN: r3717
-rw-r--r--gcc/jump.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/jump.c b/gcc/jump.c
index be7cd71..fb4ff23 100644
--- a/gcc/jump.c
+++ b/gcc/jump.c
@@ -1192,8 +1192,10 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan)
TEMP4 to the earliest insn used to find the condition. */
if ((BRANCH_COST >= 2
-#if defined (HAVE_incscc) || defined (HAVE_decscc)
+#ifdef HAVE_incscc
|| HAVE_incscc
+#endif
+#ifdef HAVE_decscc
|| HAVE_decscc
#endif
)