Commit e300c78c by Richard Sandiford Committed by Richard Sandiford

sh.md (initialize_trampoline): Do not force the trampoline address into R0_REGS here.

	* config/sh/sh.md (initialize_trampoline): Do not force the
	trampoline address into R0_REGS here.

From-SVN: r59211
parent d1afe2ca
2002-11-18 Richard Sandiford <rsandifo@redhat.com>
* config/sh/sh.md (initialize_trampoline): Do not force the
trampoline address into R0_REGS here.
2002-11-17 Kazu Hirata <kazu@cs.umass.edu>
* df.c: Fix formatting.
......
......@@ -3572,9 +3572,8 @@
{
rtx sfun, tramp;
tramp = force_reg (Pmode, operands[0]);
sfun = force_reg (Pmode, gen_rtx_SYMBOL_REF (Pmode, \"__init_trampoline\"));
tramp = gen_rtx_REG (SImode, R0_REG);
emit_move_insn (tramp, operands[0]);
emit_move_insn (gen_rtx_REG (SImode, R2_REG), operands[1]);
emit_move_insn (gen_rtx_REG (SImode, R3_REG), operands[2]);
......
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