Commit 2f3fdc52 by Will Cohen Committed by William Cohen

abi64.h (RETURN_IN_MEMORY): Always take into account whether registers are 32…

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
parent a941b588
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> 2001-01-24 Ben Elliston <bje@redhat.com>
* config/m32r/m32r.h (PREDICATE_CODES): Remove m32r_not_same_reg. * config/m32r/m32r.h (PREDICATE_CODES): Remove m32r_not_same_reg.
......
...@@ -91,7 +91,7 @@ Boston, MA 02111-1307, USA. */ ...@@ -91,7 +91,7 @@ Boston, MA 02111-1307, USA. */
((mips_abi == ABI_32 || mips_abi == ABI_O64) \ ((mips_abi == ABI_32 || mips_abi == ABI_O64) \
? TYPE_MODE (TYPE) == BLKmode \ ? TYPE_MODE (TYPE) == BLKmode \
: (int_size_in_bytes (TYPE) \ : (int_size_in_bytes (TYPE) \
> (mips_abi == ABI_EABI ? 2 * UNITS_PER_WORD : 16))) > (2 * UNITS_PER_WORD)))
#ifdef ANSI_PROTOTYPES #ifdef ANSI_PROTOTYPES
union tree_node; union tree_node;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment