diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2015-04-22 00:44:15 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2015-04-22 00:44:15 +0000 |
commit | 8a90eeb6a839e92d0ae6800cb4ba25ca864b0076 (patch) | |
tree | 8160a796c153a7d771bebd5d72b87cb37e57a451 /gcc/final.c | |
parent | 9a52250502b8e0beed0ff5b289fe0bf6230ca7c2 (diff) | |
download | gcc-8a90eeb6a839e92d0ae6800cb4ba25ca864b0076.zip gcc-8a90eeb6a839e92d0ae6800cb4ba25ca864b0076.tar.gz gcc-8a90eeb6a839e92d0ae6800cb4ba25ca864b0076.tar.bz2 |
remove some ifdef HAVE_cc0
gcc/ChangeLog:
2015-04-21 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* conditions.h: Define macros even if HAVE_cc0 is undefined.
* emit-rtl.c: Define functions even if HAVE_cc0 is undefined.
* final.c: Likewise.
* jump.c: Likewise.
* recog.c: Likewise.
* recog.h: Declare functions even when HAVE_cc0 is undefined.
* sched-deps.c (sched_analyze_2): Always compile case for cc0.
From-SVN: r222294
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/final.c b/gcc/final.c index 1fa93d9..41f6bd9 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -191,7 +191,6 @@ static rtx last_ignored_compare = 0; static int insn_counter = 0; -#ifdef HAVE_cc0 /* This variable contains machine-dependent flags (defined in tm.h) set and examined by output routines that describe how to interpret the condition codes properly. */ @@ -202,7 +201,6 @@ CC_STATUS cc_status; from before the insn. */ CC_STATUS cc_prev_status; -#endif /* Number of unmatched NOTE_INSN_BLOCK_BEG notes we have seen. */ |