Thu Jul 3 17:41:46 1997 Michael Snyder (msnyder@cleaver.cygnus.com)

* mips-tdep.c (mips_extract_return_value): align 4-byte float
        return values within the 8-byte FP register.
This commit is contained in:
Michael Snyder 1997-07-04 00:44:01 +00:00
parent 6d2f93f855
commit 87910097ba
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Thu Jul 3 17:41:46 1997 Michael Snyder (msnyder@cleaver.cygnus.com)
* mips-tdep.c (mips_extract_return_value): align 4-byte float
return values within the 8-byte FP register.
Thu Jul 3 13:48:11 1997 Michael Snyder (msnyder@cleaver.cygnus.com)
* mips-tdep.c (mips_push_arguments): don't left-adjust 32-bit

View File

@ -1953,8 +1953,7 @@ mips_extract_return_value (valtype, regbuf, valbuf)
if (TARGET_BYTE_ORDER == BIG_ENDIAN)
{ /* "un-left-justify" the value from the register */
if (len < REGISTER_RAW_SIZE (regnum) &&
TYPE_CODE (valtype) != TYPE_CODE_FLT)
if (len < REGISTER_RAW_SIZE (regnum))
offset = REGISTER_RAW_SIZE (regnum) - len;
if (len > REGISTER_RAW_SIZE (regnum) && /* odd-size structs */
len < REGISTER_RAW_SIZE (regnum) * 2 &&