diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2004-02-04 23:46:29 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2004-02-04 23:46:29 +0000 |
commit | a322288b35dccf90cf73143c34f5c7fd9ebc42e8 (patch) | |
tree | c8b904676ab55fcfad004b970a6892846ff00900 /gcc | |
parent | 859b9c1dcf0f4e63ab1d38db2e6869a1acc07127 (diff) | |
download | gcc-a322288b35dccf90cf73143c34f5c7fd9ebc42e8.zip gcc-a322288b35dccf90cf73143c34f5c7fd9ebc42e8.tar.gz gcc-a322288b35dccf90cf73143c34f5c7fd9ebc42e8.tar.bz2 |
* config/s390/s390.c (s390_trampoline_template): Remove gen_rtx().
From-SVN: r77277
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/s390/s390.c | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 853884c..03b8b69 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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, diff --git a/gcc/config/s390/s390.c b/gcc/config/s390/s390.c index 1aafdc6..343d165 100644 --- a/gcc/config/s390/s390.c +++ b/gcc/config/s390/s390.c @@ -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); } |