(expand_expr, case MINUS_EXPR): Remove bogus operand swap.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 27 Jan 1995 23:51:02 +0000 (18:51 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 27 Jan 1995 23:51:02 +0000 (18:51 -0500)
From-SVN: r8829

gcc/expr.c

index 7cc7d284ccc72e0fff9cee34be5c1b1d770fb65c..6034a46c7de5bbe8d0929e47543622e88106ee36 100644 (file)
@@ -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)