Commit 3af6dfd8 by Richard Kenner

(expand_value_return): Call convert_move instead of the erroneous

convert_to_mode.

From-SVN: r3347
parent e8fda1f9
...@@ -2204,7 +2204,7 @@ expand_value_return (val) ...@@ -2204,7 +2204,7 @@ expand_value_return (val)
} }
if (GET_MODE (val) != VOIDmode && GET_MODE (val) != mode) if (GET_MODE (val) != VOIDmode && GET_MODE (val) != mode)
convert_to_mode (return_reg, val, unsignedp); convert_move (return_reg, val, unsignedp);
else else
#endif #endif
emit_move_insn (return_reg, val); emit_move_insn (return_reg, val);
......
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