Re: [PATCH 02/12] remove some ifdef HAVE_cc0.

* conditions.h (CC_STATUS_INIT): Gate on #ifndef CC_STATUS_INIT.

From-SVN: r222358
This commit is contained in:
Kyrylo Tkachov 2015-04-23 10:34:58 +00:00 committed by Kyrylo Tkachov
parent f5ee50a5ab
commit 8778aed76e
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2015-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* conditions.h (CC_STATUS_INIT): Gate on #ifndef CC_STATUS_INIT.
2015-04-23 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* config/arm/arm.md (load_multiple): Reject operand 2 greater than

View File

@ -109,8 +109,10 @@ extern CC_STATUS cc_status;
/* This is how to initialize the variable cc_status.
final does this at appropriate moments. */
/* FIXME: We want to get rid of these ifndefs. */
#ifndef CC_STATUS_INIT
#define CC_STATUS_INIT \
(cc_status.flags = 0, cc_status.value1 = 0, cc_status.value2 = 0, \
CC_STATUS_MDEP_INIT)
#endif
#endif /* GCC_CONDITIONS_H */