diff options
author | Eric Christopher <echristo@redhat.com> | 2005-06-06 18:13:31 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2005-06-06 18:13:31 +0000 |
commit | 08fd6d04199ac8d1f1571d1f807853b8ff7f2fc0 (patch) | |
tree | b91fab24723a61559698e77950c8ea9800d7c8ca /gcc/expr.c | |
parent | 5e97d404553157c7d74c399907b60125111f130f (diff) | |
download | gcc-08fd6d04199ac8d1f1571d1f807853b8ff7f2fc0.zip gcc-08fd6d04199ac8d1f1571d1f807853b8ff7f2fc0.tar.gz gcc-08fd6d04199ac8d1f1571d1f807853b8ff7f2fc0.tar.bz2 |
expr.c (do_store_flag): Remove check for non-negative BRANCH_COST.
2005-06-06 Eric Christopher <echristo@redhat.com>
target/21927
* expr.c (do_store_flag): Remove check for non-negative BRANCH_COST.
From-SVN: r100670
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -8729,8 +8729,7 @@ do_store_flag (tree exp, rtx target, enum machine_mode mode, int only_cheap) if ((code == LT && integer_zerop (arg1)) || (! only_cheap && code == GE && integer_zerop (arg1))) ; - else if (BRANCH_COST >= 0 - && ! only_cheap && (code == NE || code == EQ) + else if (! only_cheap && (code == NE || code == EQ) && TREE_CODE (type) != REAL_TYPE && ((abs_optab->handlers[(int) operand_mode].insn_code != CODE_FOR_nothing) |