abi64.h (RETURN_IN_MEMORY): Always take into account whether registers are 32 bits...
authorWill Cohen <wcohen@redhat.com>
Wed, 24 Jan 2001 14:01:26 +0000 (14:01 +0000)
committerWilliam Cohen <wcohen@gcc.gnu.org>
Wed, 24 Jan 2001 14:01:26 +0000 (14:01 +0000)
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

gcc/ChangeLog
gcc/config/mips/abi64.h

index c0666cf7f9d0ed28e34225af0c32504502d941ea..e5c63606d437b6eb335c0cacc1cfc2ab9e7d3a85 100644 (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.
index a8833466380bdafd6bc2035c0c5f973869b87467..95e7d82b9fc0d50376b644d7c6a54de26dfe33f6 100644 (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;