Commit b812b884 authored by cpopetz's avatar cpopetz
Browse files

* calls.c (emit_library_call_value_1): Use valreg instead

	of hard_libcall_value.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34854 138bc75d-0d04-0410-961f-82ee72b054a4
parent ab0cc102
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