(expand_value_return): Call convert_move instead of the erroneous

convert_to_mode.

From-SVN: r3347
This commit is contained in:
Richard Kenner 1993-01-26 07:13:47 -05:00
parent e8fda1f96b
commit 3af6dfd8b4
1 changed files with 1 additions and 1 deletions

View File

@ -2204,7 +2204,7 @@ expand_value_return (val)
}
if (GET_MODE (val) != VOIDmode && GET_MODE (val) != mode)
convert_to_mode (return_reg, val, unsignedp);
convert_move (return_reg, val, unsignedp);
else
#endif
emit_move_insn (return_reg, val);