genconfig.c (main): Generate CC0_P.
authorKazu Hirata <kazu@cs.umass.edu>
Wed, 5 Feb 2003 00:56:40 +0000 (00:56 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 5 Feb 2003 00:56:40 +0000 (00:56 +0000)
* genconfig.c (main): Generate CC0_P.
* rtl.h (CC0_P): Remove.

From-SVN: r62423

gcc/ChangeLog
gcc/genconfig.c
gcc/rtl.h

index c3f0e051e709d43e22404c452f5be61198bbdc84..a24745363812731f7086c21b080b17c7818429dc 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-04  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * genconfig.c (main): Generate CC0_P.
+       * rtl.h (CC0_P): Remove.
+
 2003-02-04  Richard Henderson  <rth@redhat.com>
 
        * libgcc2.h, libgcc2.c (__ffsSI2): New.
index ca74757364e5042fecc6ec40e5a765cbaaa0dc3b..bb0dea9f92da2b92d72512dab1c0c5aba1c3e693 100644 (file)
@@ -342,7 +342,14 @@ main (argc, argv)
   printf ("#endif\n");
 
   if (have_cc0_flag)
-    printf ("#define HAVE_cc0 1\n");
+    {
+      printf ("#define HAVE_cc0 1\n");
+      printf ("#define CC0_P(X) ((X) == cc0_rtx)\n");
+    }
+  else
+    {
+      printf ("#define CC0_P(X) 0\n");
+    }
 
   if (have_cmove_flag)
     printf ("#define HAVE_conditional_move 1\n");
index 7531d8a1cfa10ecab25d64313e08489564837947..7758a92f724ce7dfcfdc175183b7e1446945008f 100644 (file)
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -273,13 +273,6 @@ struct rtvec_def GTY(()) {
 /* Predicate yielding nonzero iff X is a barrier insn.  */
 #define BARRIER_P(X) (GET_CODE (X) == BARRIER)
 
-/* Predicate yielding nonzero iff X is cc0.  */
-#ifdef HAVE_cc0
-#define CC0_P(X) ((X) == cc0_rtx)
-#else
-#define CC0_P(X) 0
-#endif
-
 /* Predicate yielding nonzero iff X is a data for a jump table.  */
 #define JUMP_TABLE_DATA_P(INSN) \
   (JUMP_P (INSN) && (GET_CODE (PATTERN (INSN)) == ADDR_VEC || \