Commit 5b22bee8 by Jim Wilson

(expand_expr, NEGATE_EXPR case): Use subtarget in

recursive call, not target.

From-SVN: r6271
parent 66a9d9f8
......@@ -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 ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment