diff options
author | Alexandre Oliva <oliva@lsd.ic.unicamp.br> | 1999-09-23 21:42:45 +0000 |
---|---|---|
committer | Alexandre Oliva <oliva@gcc.gnu.org> | 1999-09-23 21:42:45 +0000 |
commit | 48f45f57fc04ac76a5699c71e2dec606992b9f9a (patch) | |
tree | a3e5c09329dac8fcbb6778d4198cecd26b7d1e04 /gcc | |
parent | 3e37bef596aa6e071a01205f67d7357d25ff5710 (diff) | |
download | gcc-48f45f57fc04ac76a5699c71e2dec606992b9f9a.zip gcc-48f45f57fc04ac76a5699c71e2dec606992b9f9a.tar.gz gcc-48f45f57fc04ac76a5699c71e2dec606992b9f9a.tar.bz2 |
mips.c (function_arg_pass_by_reference): Define unconditionally, since it's called unconditionally.
* config/mips/mips.c (function_arg_pass_by_reference): Define
unconditionally, since it's called unconditionally.
From-SVN: r29641
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/mips.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index aea059c..88fe18d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 23 17:41:47 1999 Alexandre Oliva <oliva@lsd.ic.unicamp.br> + + * config/mips/mips.c (function_arg_pass_by_reference): Define + unconditionally, since it's called unconditionally. + Thu Sep 23 13:40:02 1999 Jason Merrill <jason@yorick.cygnus.com> * toplev.c (documented_lang_options): Add -fshort-wchar. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index a579205..6712d17 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -7416,6 +7416,7 @@ mips_function_value (valtype, func) return gen_rtx_REG (mode, reg); } +#endif /* The implementation of FUNCTION_ARG_PASS_BY_REFERENCE. Return nonzero when an argument must be passed by reference. */ @@ -7451,7 +7452,6 @@ function_arg_pass_by_reference (cum, mode, type, named) size = int_size_in_bytes (type); return size == -1 || size > UNITS_PER_WORD; } -#endif /* This function returns the register class required for a secondary register when copying between one of the registers in CLASS, and X, |