diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-06 17:22:54 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-06 17:22:54 +0000 |
commit | 99a5b5de1381bebb00613232dfc1511e5c745d38 (patch) | |
tree | 412f2359a1f55cf40bdd655bba069aaa04f3b5b0 /gcc/genconfig.c | |
parent | d844aaccb2f8f85d240b700657795074b7580c9b (diff) | |
download | gcc-99a5b5de1381bebb00613232dfc1511e5c745d38.tar.gz |
* genconfig.c (main): Disable HAVE_conditional_arithmetic.
* jump.c (jump_optimize_1): Document why.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29841 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genconfig.c')
-rw-r--r-- | gcc/genconfig.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/genconfig.c b/gcc/genconfig.c index 23bffeab3b9..bd31d7393c3 100644 --- a/gcc/genconfig.c +++ b/gcc/genconfig.c @@ -348,8 +348,11 @@ from the machine description file `md'. */\n\n"); if (have_cmove_flag) printf ("#define HAVE_conditional_move\n"); +#if 0 + /* Disabled. See the discussion in jump.c. */ if (have_cond_arith_flag) printf ("#define HAVE_conditional_arithmetic\n"); +#endif if (have_lo_sum_flag) printf ("#define HAVE_lo_sum\n"); |