genconfig.c (main): Have CC0_P check its operand even on a target without cc0.

* genconfig.c (main): Have CC0_P check its operand even on a
	target without cc0.

From-SVN: r77009
This commit is contained in:
Kazu Hirata 2004-01-30 23:39:01 +00:00 committed by Kazu Hirata
parent 59445d7427
commit bfb2d6613c
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-01-30 Kazu Hirata <kazu@cs.umass.edu>
* genconfig.c (main): Have CC0_P check its operand even on a
target without cc0.
2004-01-30 Kazu Hirata <kazu@cs.umass.edu>
* config/alpha/alpha.c: Remove mentions of deprecates macros

View File

@ -336,7 +336,9 @@ main (int argc, char **argv)
}
else
{
printf ("#define CC0_P(X) 0\n");
/* We output CC0_P this way to make sure that X is declared
somewhere. */
printf ("#define CC0_P(X) ((X) ? 0 : 0)\n");
}
if (have_cmove_flag)