Commit 73003b2f by Clinton Popetz Committed by Clinton Popetz

calls.c (emit_library_call_value_1): Use valreg instead of hard_libcall_value.

	* calls.c (emit_library_call_value_1): Use valreg instead
	of hard_libcall_value.

From-SVN: r34854
parent fa948ac3
Mon Jul 3 16:53:43 2000 Clinton Popetz <cpopetz@cygnus.com>
* calls.c (emit_library_call_value_1): Use valreg instead
of hard_libcall_value.
2000-07-03 Geoff Keating <geoffk@cygnus.com>
* config/rs6000/rs6000.c (rs6000_emit_move): New function.
......
......@@ -3915,9 +3915,9 @@ emit_library_call_value_1 (retval, orgfun, value, fn_type, outmode, nargs, p)
emit_move_insn (value, mem_value);
}
else if (value != 0)
emit_move_insn (value, hard_libcall_value (outmode));
emit_move_insn (value, valreg);
else
value = hard_libcall_value (outmode);
value = valreg;
}
if (ACCUMULATE_OUTGOING_ARGS)
......
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