From: Richard Kenner Date: Thu, 25 Feb 1993 22:52:02 +0000 (-0500) Subject: (emit_store_flag): Fix typo in testing BRANCH_COST. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c8c1bde3bba8b059df1e81f51aadbd1c0e7cb710;p=gcc.git (emit_store_flag): Fix typo in testing BRANCH_COST. From-SVN: r3533 --- diff --git a/gcc/expmed.c b/gcc/expmed.c index 84ddc1bf218..9d7b46df905 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -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) {