From eb1c92fbd0a6c026832b2210aec95b2b9dbf0efc Mon Sep 17 00:00:00 2001 From: rth Date: Thu, 27 Apr 2000 07:18:08 +0000 Subject: * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33473 138bc75d-0d04-0410-961f-82ee72b054a4 --- 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 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); -- cgit v1.2.1