diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 1993-09-23 07:24:22 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 1993-09-23 07:24:22 +0000 |
commit | 0c28fe8dd4fb7b6814d477a57db0de05011a62ff (patch) | |
tree | 1d0528b0363ee6d488ae1ba2fa4e3b256d72f31c /gdb/config/mips | |
parent | 8b52d486699d4a92b984f5dc8f227459c4f7d907 (diff) | |
download | gdb-0c28fe8dd4fb7b6814d477a57db0de05011a62ff.zip gdb-0c28fe8dd4fb7b6814d477a57db0de05011a62ff.tar.gz gdb-0c28fe8dd4fb7b6814d477a57db0de05011a62ff.tar.bz2 |
* config/mips/tm-mips.h (STORE_STRUCT_RETURN): Define as noop as
Diffstat (limited to 'gdb/config/mips')
-rw-r--r-- | gdb/config/mips/tm-mips.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/config/mips/tm-mips.h b/gdb/config/mips/tm-mips.h index 4f012b2..ddb63c4 100644 --- a/gdb/config/mips/tm-mips.h +++ b/gdb/config/mips/tm-mips.h @@ -212,10 +212,9 @@ extern CORE_ADDR mips_skip_prologue PARAMS ((CORE_ADDR addr, int lenient)); #endif /* Store the address of the place in which to copy the structure the - subroutine will return. This is called from call_function. */ + subroutine will return. Handled by mips_push_arguments. */ -#define STORE_STRUCT_RETURN(addr, sp) \ - { sp = push_word(sp, addr);} +#define STORE_STRUCT_RETURN(addr, sp) /**/ /* Extract from an array REGBUF containing the (raw) register state a function return value of type TYPE, and copy that, in virtual format, |