genconfig.c (main): Generate CC0_P.

* genconfig.c (main): Generate CC0_P.
	* rtl.h (CC0_P): Remove.

From-SVN: r62423
This commit is contained in:
Kazu Hirata 2003-02-05 00:56:40 +00:00 committed by Kazu Hirata
parent dfff898c27
commit 4b3cf52215
3 changed files with 13 additions and 8 deletions

View 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.

View 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");

View File

@ -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 || \