* config/s390/s390.c (s390_trampoline_template): Remove gen_rtx().
authorUlrich Weigand <uweigand@de.ibm.com>
Wed, 4 Feb 2004 23:46:29 +0000 (23:46 +0000)
committerUlrich Weigand <uweigand@gcc.gnu.org>
Wed, 4 Feb 2004 23:46:29 +0000 (23:46 +0000)
From-SVN: r77277

gcc/ChangeLog
gcc/config/s390/s390.c

index 853884c3d0047d4bc381422411474374a26e754a..03b8b699bf514a6e1f9fe500e771a34bd1b91566 100644 (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,
index 1aafdc6492ad71f09cadd5b2442125b5d823b88b..343d16582254cedb38408eb5c0e7fa4fb6dfbd4c 100644 (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);
 }