sh.c (prepare_move_operands): Use operands[0] for the output rtl if no_new_pseudos is set.

* config/sh/sh.c (prepare_move_operands): Use operands[0]
	for the output rtl if no_new_pseudos is set.  Remove redundant
	line.

From-SVN: r89884
This commit is contained in:
Kaz Kojima 2004-10-30 10:14:56 +00:00
parent 46097c7639
commit e57a6d4273
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2004-10-30 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/sh.c (prepare_move_operands): Use operands[0]
for the output rtl if no_new_pseudos is set. Remove redundant
line.
2004-10-30 Joseph S. Myers <joseph@codesourcery.com>
PR c/16666

View File

@ -1015,7 +1015,6 @@ prepare_move_operands (rtx operands[], enum machine_mode mode)
{
rtx tga_op1, tga_ret, tmp, tmp2;
switch (tls_kind)
{
case TLS_MODEL_GLOBAL_DYNAMIC:
@ -1043,7 +1042,7 @@ prepare_move_operands (rtx operands[], enum machine_mode mode)
case TLS_MODEL_INITIAL_EXEC:
if (! flag_pic)
emit_insn (gen_GOTaddr2picreg ());
tga_op1 = gen_reg_rtx (Pmode);
tga_op1 = no_new_pseudos ? op0 : gen_reg_rtx (Pmode);
tmp = gen_sym2GOTTPOFF (op1);
emit_insn (gen_tls_initial_exec (tga_op1, tmp));
op1 = tga_op1;