diff options
author | Will Cohen <wcohen@redhat.com> | 2001-01-24 14:01:26 +0000 |
---|---|---|
committer | William Cohen <wcohen@gcc.gnu.org> | 2001-01-24 14:01:26 +0000 |
commit | 2f3fdc527da65e0022466612ef40f13efbf45cbe (patch) | |
tree | e3e64662aa0881bcbfc975a21a45b406188cd3d3 | |
parent | a941b588e17466b3d046323c39415d468cb6b6aa (diff) | |
download | gcc-2f3fdc527da65e0022466612ef40f13efbf45cbe.zip gcc-2f3fdc527da65e0022466612ef40f13efbf45cbe.tar.gz gcc-2f3fdc527da65e0022466612ef40f13efbf45cbe.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/abi64.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c0666cf..e5c6360 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config/mips/abi64.h b/gcc/config/mips/abi64.h index a883346..95e7d82 100644 --- a/gcc/config/mips/abi64.h +++ b/gcc/config/mips/abi64.h @@ -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; |