(STORE_STRUCT_RETURN): Change to handle --enable-64-bit-bfd.
This commit is contained in:
parent
a12e621548
commit
223f2ecd9a
1 changed files with 3 additions and 1 deletions
|
@ -248,7 +248,9 @@ extern CORE_ADDR sparc_pc_adjust PARAMS ((CORE_ADDR));
|
|||
subroutine will return. This is called from call_function. */
|
||||
|
||||
#define STORE_STRUCT_RETURN(ADDR, SP) \
|
||||
{ target_write_memory ((SP)+(16*4), (char *)&(ADDR), 4); }
|
||||
{ char val[4]; \
|
||||
store_unsigned_integer (val, 4, (ADDR)); \
|
||||
write_memory ((SP)+(16*4), val, 4); }
|
||||
|
||||
/* Extract from an array REGBUF containing the (raw) register state
|
||||
a function return value of type TYPE, and copy that, in virtual format,
|
||||
|
|
Loading…
Reference in a new issue