Commit ce0f3925 by Richard Sandiford Committed by Richard Sandiford

* expr.c (force_operand): Fix reversed move.

From-SVN: r53556
parent 06809951
2002-05-17 Richard Sandiford <rsandifo@redhat.com>
* expr.c (force_operand): Fix reversed move.
2002-05-17 Kurt Wall <kwall@kurtwerks.com> 2002-05-17 Kurt Wall <kwall@kurtwerks.com>
* doc/install.texi (Testing): Mention two common DejaGnu warnings * doc/install.texi (Testing): Mention two common DejaGnu warnings
......
...@@ -5549,7 +5549,7 @@ force_operand (value, target) ...@@ -5549,7 +5549,7 @@ force_operand (value, target)
{ {
if (!target) if (!target)
target = gen_reg_rtx (GET_MODE (value)); target = gen_reg_rtx (GET_MODE (value));
convert_move (force_operand (XEXP (value, 0), NULL), target, convert_move (target, force_operand (XEXP (value, 0), NULL),
code == ZERO_EXTEND); code == ZERO_EXTEND);
return target; return target;
} }
......
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