(emit_store_flag): Fix typo in testing BRANCH_COST.
authorRichard Kenner <kenner@gcc.gnu.org>
Thu, 25 Feb 1993 22:52:02 +0000 (17:52 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Thu, 25 Feb 1993 22:52:02 +0000 (17:52 -0500)
From-SVN: r3533

gcc/expmed.c

index 84ddc1bf218132c909e9a5b208bac82235d82040..9d7b46df905ff382185d9f5d95f4f4c84e19f416 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)
     {