Commit 81d79e2c by Richard Stallman

(convert_move): Use emit_library_call_value.

From-SVN: r5353
parent 4644aad4
......@@ -507,6 +507,8 @@ convert_move (to, from, unsignedp)
if (to_real)
{
rtx value;
#ifdef HAVE_extendqfhf2
if (HAVE_extendqfsf2 && from_mode == QFmode && to_mode == HFmode)
{
......@@ -775,8 +777,9 @@ convert_move (to, from, unsignedp)
/* This conversion is not implemented yet. */
abort ();
emit_library_call (libcall, 1, to_mode, 1, from, from_mode);
emit_move_insn (to, hard_libcall_value (to_mode));
value = emit_library_call_value (libcall, NULL_RTX, 1, to_mode,
1, from, from_mode);
emit_move_insn (to, value);
return;
}
......
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