diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-03-12 17:25:25 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-03-12 17:25:25 -0500 |
commit | 48f16828957b8cd783d3fb80c968ff9c9151ec90 (patch) | |
tree | eaa5ad0575b85b39d3c7d588a5e844e82a423d9c | |
parent | fe4435d988378b1ee56c2dc0c387d729cb44421d (diff) | |
download | gcc-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.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 ) |