summaryrefslogtreecommitdiff
path: root/gcc/genconfig.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/genconfig.c')
-rw-r--r--gcc/genconfig.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/genconfig.c b/gcc/genconfig.c
index c76bdb9d645..6a356746754 100644
--- a/gcc/genconfig.c
+++ b/gcc/genconfig.c
@@ -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)