abi64.h (RETURN_IN_MEMORY): Always take into account whether registers are 32 bits or 64 bits in size.

2001-01-24  Will Cohen  <wcohen@redhat.com>

	* config/mips/abi64.h (RETURN_IN_MEMORY): Always take into account
	whether registers are 32 bits or 64 bits in size.

From-SVN: r39237
This commit is contained in:
Will Cohen 2001-01-24 14:01:26 +00:00 committed by William Cohen
parent a941b588e1
commit 2f3fdc527d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-01-24 Will Cohen <wcohen@redhat.com>
* config/mips/abi64.h (RETURN_IN_MEMORY): Always take into account
whether registers are 32 bits or 64 bits in size.
2001-01-24 Ben Elliston <bje@redhat.com>
* config/m32r/m32r.h (PREDICATE_CODES): Remove m32r_not_same_reg.

View File

@ -91,7 +91,7 @@ Boston, MA 02111-1307, USA. */
((mips_abi == ABI_32 || mips_abi == ABI_O64) \
? TYPE_MODE (TYPE) == BLKmode \
: (int_size_in_bytes (TYPE) \
> (mips_abi == ABI_EABI ? 2 * UNITS_PER_WORD : 16)))
> (2 * UNITS_PER_WORD)))
#ifdef ANSI_PROTOTYPES
union tree_node;