diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-27 18:51:02 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-01-27 18:51:02 -0500 |
commit | 2391bfeaa294758dd36233d01a25f222bae2a196 (patch) | |
tree | d30773355f16d2a7b119be1dd4f04f36f24ea2f5 /gcc | |
parent | 82f0e2cc935b2ef1bf4ad92f705ac4bc3088925e (diff) | |
download | gcc-2391bfeaa294758dd36233d01a25f222bae2a196.zip gcc-2391bfeaa294758dd36233d01a25f222bae2a196.tar.gz gcc-2391bfeaa294758dd36233d01a25f222bae2a196.tar.bz2 |
(expand_expr, case MINUS_EXPR): Remove bogus operand swap.
From-SVN: r8829
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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) |