diff options
author | oliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-23 21:42:45 +0000 |
---|---|---|
committer | oliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-23 21:42:45 +0000 |
commit | 8654acdeacb0e89422e4a84d73f133fdd935a164 (patch) | |
tree | a3e5c09329dac8fcbb6778d4198cecd26b7d1e04 /gcc/config/mips | |
parent | 8279e15df51a42f2f1f3732e6306bb5946d21b4c (diff) | |
download | gcc-8654acdeacb0e89422e4a84d73f133fdd935a164.tar.gz |
* config/mips/mips.c (function_arg_pass_by_reference): Define
unconditionally, since it's called unconditionally.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29641 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips')
-rw-r--r-- | gcc/config/mips/mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index a5792059c4f..6712d171aec 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, |