From: Richard Kenner Date: Fri, 27 Jan 1995 23:51:02 +0000 (-0500) Subject: (expand_expr, case MINUS_EXPR): Remove bogus operand swap. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2391bfeaa294758dd36233d01a25f222bae2a196;p=gcc.git (expand_expr, case MINUS_EXPR): Remove bogus operand swap. From-SVN: r8829 --- diff --git a/gcc/expr.c b/gcc/expr.c index 7cc7d284ccc..6034a46c7de 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -5214,10 +5214,6 @@ expand_expr (exp, target, tmode, modifier) rtx op1 = expand_expr (TREE_OPERAND (exp, 1), NULL_RTX, VOIDmode, modifier); - /* If one operand is a CONST_INT, put it last. */ - if (GET_CODE (op0) == CONST_INT) - temp = op0, op0 = op1, op1 = temp; - /* If the last operand is a CONST_INT, use plus_constant of the negated constant. Else make the MINUS. */ if (GET_CODE (op1) == CONST_INT)