OSDN Git Service

(emit_store_flag): Fix typo in testing BRANCH_COST.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 25 Feb 1993 22:52:02 +0000 (22:52 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 25 Feb 1993 22:52:02 +0000 (22:52 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@3533 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/expmed.c

index 84ddc1b..9d7b46d 100644 (file)
@@ -2960,7 +2960,7 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
      comparison with zero.  Don't do any of these cases if branches are
      very cheap.  */
 
-  if (BRANCH_COST >= 0
+  if (BRANCH_COST > 0
       && GET_MODE_CLASS (mode) == MODE_INT && (code == EQ || code == NE)
       && op1 != const0_rtx)
     {