diff options
author | Doug Evans <dje@gnu.org> | 1995-01-25 04:15:47 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1995-01-25 04:15:47 +0000 |
commit | 1a395e69c8fc59e969f9fd5a381edb3ef8434e2e (patch) | |
tree | a005c80b8be71d3314a305ebcd8f3cf25d33fe83 /gcc | |
parent | 423933c298b2dd87ff3c0bf77ae1bba8a6ca715b (diff) | |
download | gcc-1a395e69c8fc59e969f9fd5a381edb3ef8434e2e.zip gcc-1a395e69c8fc59e969f9fd5a381edb3ef8434e2e.tar.gz gcc-1a395e69c8fc59e969f9fd5a381edb3ef8434e2e.tar.bz2 |
(main): Delete #ifndef around HAVE_conditional_move.
From-SVN: r8799
Diffstat (limited to 'gcc')
-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 f1585c6..da230f1 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"); |