OSDN Git Service

2005-06-06 Eric Christopher <echristo@redhat.com>
authorechristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 6 Jun 2005 18:13:31 +0000 (18:13 +0000)
committerechristo <echristo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 6 Jun 2005 18:13:31 +0000 (18:13 +0000)
target/21927
* expr.c (do_store_flag): Remove check for non-negative BRANCH_COST.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100670 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/expr.c

index d52b391..5eaa8ed 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-06  Eric Christopher  <echristo@redhat.com>
+
+       target/21927
+       * expr.c (do_store_flag): Remove check for non-negative BRANCH_COST.
+
 2005-06-06  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
 
        * config/i386/x86-64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Guard with
index e67d65d..a3ee9e7 100644 (file)
@@ -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)