From: Richard Kenner Date: Tue, 26 Jan 1993 12:13:47 +0000 (-0500) Subject: (expand_value_return): Call convert_move instead of the erroneous X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3af6dfd8b41b89bf102770729eebacb3af9006a6;p=gcc.git (expand_value_return): Call convert_move instead of the erroneous convert_to_mode. From-SVN: r3347 --- diff --git a/gcc/stmt.c b/gcc/stmt.c index 84e29801175..a4f032372e3 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -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);