* config/s390/s390.c (s390_trampoline_template): Remove gen_rtx().

From-SVN: r77277
This commit is contained in:
Ulrich Weigand 2004-02-04 23:46:29 +00:00 committed by Ulrich Weigand
parent 859b9c1dcf
commit a322288b35
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2004-02-04 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.c (s390_trampoline_template): Remove gen_rtx().
2004-02-04 David Edelsohn <edelsohn@gnu.org>
* reload.c (refers_to_regno_for_reload_p): Test regno, not inner_regno,

View File

@ -6677,12 +6677,10 @@ s390_trampoline_template (FILE *file)
void
s390_initialize_trampoline (rtx addr, rtx fnaddr, rtx cxt)
{
emit_move_insn (gen_rtx
(MEM, Pmode,
emit_move_insn (gen_rtx_MEM (Pmode,
memory_address (Pmode,
plus_constant (addr, (TARGET_64BIT ? 20 : 12) ))), cxt);
emit_move_insn (gen_rtx
(MEM, Pmode,
emit_move_insn (gen_rtx_MEM (Pmode,
memory_address (Pmode,
plus_constant (addr, (TARGET_64BIT ? 28 : 16) ))), fnaddr);
}