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/conditions.h | |
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/conditions.h')
-rw-r--r-- | gcc/conditions.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/conditions.h b/gcc/conditions.h index 2308bfc..7cd1e1c 100644 --- a/gcc/conditions.h +++ b/gcc/conditions.h @@ -20,10 +20,6 @@ along with GCC; see the file COPYING3. If not see #ifndef GCC_CONDITIONS_H #define GCC_CONDITIONS_H -/* None of the things in the files exist if we don't use CC0. */ - -#ifdef HAVE_cc0 - /* The variable cc_status says how to interpret the condition code. It is set by output routines for an instruction that sets the cc's and examined by output routines for jump instructions. @@ -117,6 +113,4 @@ extern CC_STATUS cc_status; (cc_status.flags = 0, cc_status.value1 = 0, cc_status.value2 = 0, \ CC_STATUS_MDEP_INIT) -#endif - #endif /* GCC_CONDITIONS_H */ |