Re: [PATCH 02/12] remove some ifdef HAVE_cc0.
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>
Thu, 23 Apr 2015 10:34:58 +0000 (10:34 +0000)
committerKyrylo Tkachov <ktkachov@gcc.gnu.org>
Thu, 23 Apr 2015 10:34:58 +0000 (10:34 +0000)
* conditions.h (CC_STATUS_INIT): Gate on #ifndef CC_STATUS_INIT.

From-SVN: r222358

gcc/ChangeLog
gcc/conditions.h

index fbc9ce3c97f135372c0bc5205957efa096282926..d0b4e32ccb5530d4e3cf64c66128a23d7d3d067f 100644 (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
index 7cd1e1c1cad35f8a8072b6c8c47e9c05be5bd5e9..0bda9a45490a76269f20f6f5ae433ff53118e7b7 100644 (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 */