summaryrefslogtreecommitdiff
path: root/gcc/genconfig.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@cygnus.com>2000-04-27 00:18:08 -0700
committerRichard Henderson <rth@gcc.gnu.org>2000-04-27 00:18:08 -0700
commit0a2287bf899285f8b60b4af922e2fb8d9b4cce2a (patch)
tree95290d1b3a766f3853be710b660f7a5f14bbd6dc /gcc/genconfig.c
parentf77046bbf90d5635de3c42233c79b07df680eb4c (diff)
downloadgcc-0a2287bf899285f8b60b4af922e2fb8d9b4cce2a.tar.gz
rtlanal.c (dead_or_set_regno_p): Use find_regno_note.
* rtlanal.c (dead_or_set_regno_p): Use find_regno_note. * genconfig.c (main): Set all HAVE_foo to 1. * graph.c (node_data): Use GET_NOTE_INSN_NAME instead of local array. From-SVN: r33473
Diffstat (limited to 'gcc/genconfig.c')
-rw-r--r--gcc/genconfig.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/genconfig.c b/gcc/genconfig.c
index 65c8701ab22..d78af0384b3 100644
--- a/gcc/genconfig.c
+++ b/gcc/genconfig.c
@@ -342,22 +342,22 @@ from the machine description file `md'. */\n\n");
printf ("#endif\n");
if (have_cc0_flag)
- printf ("#define HAVE_cc0\n");
+ printf ("#define HAVE_cc0 1\n");
if (have_cmove_flag)
- printf ("#define HAVE_conditional_move\n");
+ printf ("#define HAVE_conditional_move 1\n");
if (have_cond_exec_flag)
- printf ("#define HAVE_conditional_execution\n");
+ printf ("#define HAVE_conditional_execution 1\n");
if (have_lo_sum_flag)
- printf ("#define HAVE_lo_sum\n");
+ printf ("#define HAVE_lo_sum 1\n");
if (have_peephole_flag)
- printf ("#define HAVE_peephole\n");
+ printf ("#define HAVE_peephole 1\n");
if (have_peephole2_flag)
- printf ("#define HAVE_peephole2\n");
+ printf ("#define HAVE_peephole2 1\n");
fflush (stdout);
return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);