diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-09 19:03:29 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-09 19:03:29 +0000 |
| commit | e478aee150f218b12792e994ff8d2de9766a3a34 (patch) | |
| tree | 91b8d10c25c1611576320ffa41e39f82fc5da4b6 | |
| parent | 7651ba96d94e6d26ab374d06caffeda36c89fcd1 (diff) | |
| download | ppe42-gcc-e478aee150f218b12792e994ff8d2de9766a3a34.tar.gz ppe42-gcc-e478aee150f218b12792e994ff8d2de9766a3a34.zip | |
* mips.c (mips_va_arg) [EABI]: Return addr_rtx.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29875 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/mips/mips.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 70880e927d3..702fcbffc25 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -13,6 +13,10 @@ Fri Oct 8 16:12:42 1999 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> Fri Oct 8 11:58:34 1999 Richard Henderson <rth@cygnus.com> + * mips.c (mips_va_arg) [EABI]: Return addr_rtx. + +Fri Oct 8 11:58:34 1999 Richard Henderson <rth@cygnus.com> + * lists.c (init_EXPR_INSN_LIST_cache): Don't need to zap the cache every function if ggc_p. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index b760292dbb4..c846ac6b2aa 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -4238,6 +4238,8 @@ mips_va_arg (valist, type) if (BYTES_BIG_ENDIAN && rsize != size) addr_rtx = plus_constant (addr_rtx, rsize - size); } + + return addr_rtx; } else { |

