diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-27 07:18:08 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-27 07:18:08 +0000 |
commit | eb1c92fbd0a6c026832b2210aec95b2b9dbf0efc (patch) | |
tree | 95290d1b3a766f3853be710b660f7a5f14bbd6dc /gcc/genconfig.c | |
parent | 17421e3315013a4df1e9b92a25454bdf0186e52f (diff) | |
download | gcc-eb1c92fbd0a6c026832b2210aec95b2b9dbf0efc.tar.gz |
* 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
Diffstat (limited to 'gcc/genconfig.c')
-rw-r--r-- | gcc/genconfig.c | 12 |
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); |