(expand_expr, NEGATE_EXPR case): Use subtarget in
authorJim Wilson <wilson@gcc.gnu.org>
Wed, 22 Dec 1993 19:35:27 +0000 (11:35 -0800)
committerJim Wilson <wilson@gcc.gnu.org>
Wed, 22 Dec 1993 19:35:27 +0000 (11:35 -0800)
recursive call, not target.

From-SVN: r6271

gcc/expr.c

index 09178a6842d0ce70986a1acc196d7f6ced9ced16..d8a49b5f21cf37cd709468a600f8687d68347828 100644 (file)
@@ -5039,7 +5039,7 @@ expand_expr (exp, target, tmode, modifier)
       return target;
 
     case NEGATE_EXPR:
-      op0 = expand_expr (TREE_OPERAND (exp, 0), target, VOIDmode, 0);
+      op0 = expand_expr (TREE_OPERAND (exp, 0), subtarget, VOIDmode, 0);
       temp = expand_unop (mode, neg_optab, op0, target, 0);
       if (temp == 0)
        abort ();