From 8778aed76e7b273d2e40112a4d8d3a799bd8fbd2 Mon Sep 17 00:00:00 2001 From: Kyrylo Tkachov Date: Thu, 23 Apr 2015 10:34:58 +0000 Subject: [PATCH] Re: [PATCH 02/12] remove some ifdef HAVE_cc0. * conditions.h (CC_STATUS_INIT): Gate on #ifndef CC_STATUS_INIT. From-SVN: r222358 --- gcc/ChangeLog | 4 ++++ gcc/conditions.h | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fbc9ce3c97f..d0b4e32ccb5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2015-04-23 Kyrylo Tkachov + + * conditions.h (CC_STATUS_INIT): Gate on #ifndef CC_STATUS_INIT. + 2015-04-23 Kyrylo Tkachov * config/arm/arm.md (load_multiple): Reject operand 2 greater than diff --git a/gcc/conditions.h b/gcc/conditions.h index 7cd1e1c1cad..0bda9a45490 100644 --- a/gcc/conditions.h +++ b/gcc/conditions.h @@ -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 */ -- 2.30.2