diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-01-25 04:15:47 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-01-25 04:15:47 +0000 |
commit | d50f0b56c27a55dde2e112fe4bd474fff4b5b60b (patch) | |
tree | a005c80b8be71d3314a305ebcd8f3cf25d33fe83 /gcc/genconfig.c | |
parent | 2e68a51e18c190356edb02b9d0a37f6ff42c33ed (diff) | |
download | gcc-d50f0b56c27a55dde2e112fe4bd474fff4b5b60b.tar.gz |
(main): Delete #ifndef around HAVE_conditional_move.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8799 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genconfig.c')
-rw-r--r-- | gcc/genconfig.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gcc/genconfig.c b/gcc/genconfig.c index f1585c6f169..da230f11b28 100644 --- a/gcc/genconfig.c +++ b/gcc/genconfig.c @@ -343,15 +343,7 @@ from the machine description file `md'. */\n\n"); printf ("#define HAVE_cc0\n"); if (have_cmove_flag) - { - /* ??? The #ifndef/#endif is a hack for targets like sparc where - conditional moves don't exist for all versions of the - architecture. This won't be needed after conditional move support - has been clean up. */ - printf ("#ifndef HAVE_conditional_move\n"); - printf ("#define HAVE_conditional_move 1\n"); - printf ("#endif\n"); - } + printf ("#define HAVE_conditional_move\n"); if (have_lo_sum_flag) printf ("#define HAVE_lo_sum\n"); |