From 0a2287bf899285f8b60b4af922e2fb8d9b4cce2a Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Thu, 27 Apr 2000 00:18:08 -0700 Subject: 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 --- gcc/genconfig.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gcc/genconfig.c') diff --git a/gcc/genconfig.c b/gcc/genconfig.c index 65c8701..d78af03 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); -- cgit v1.1