From 48f16828957b8cd783d3fb80c968ff9c9151ec90 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 12 Mar 1993 17:25:25 -0500 Subject: [PATCH] (jump_optimize): Fix bug in last change. From-SVN: r3717 --- gcc/jump.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gcc/jump.c b/gcc/jump.c index be7cd713061..fb4ff239e69 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 ) -- 2.30.2