diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-09-28 16:12:50 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-09-28 16:12:50 +0000 |
commit | 9ff63c35fb8980e34b12712ec588cc328c03c739 (patch) | |
tree | 828e4f05083295be0c3478b2451b4bbf13d19675 /gdb/config/pa/tm-hppa.h | |
parent | 41d041d67127783bcb817154c71354e26dbef6d0 (diff) | |
download | gdb-9ff63c35fb8980e34b12712ec588cc328c03c739.zip gdb-9ff63c35fb8980e34b12712ec588cc328c03c739.tar.gz gdb-9ff63c35fb8980e34b12712ec588cc328c03c739.tar.bz2 |
2003-09-28 Andrew Cagney <cagney@redhat.com>
* config/pa/tm-hppa.h (DEPRECATED_VALUE_RETURNED_FROM_STACK):
Rename VALUE_RETURNED_FROM_STACK.
* infcmd.c (print_return_value): Update.
* infcall.c (call_function_by_hand): Update.
Diffstat (limited to 'gdb/config/pa/tm-hppa.h')
-rw-r--r-- | gdb/config/pa/tm-hppa.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/config/pa/tm-hppa.h b/gdb/config/pa/tm-hppa.h index 8a34c23..c6504ab 100644 --- a/gdb/config/pa/tm-hppa.h +++ b/gdb/config/pa/tm-hppa.h @@ -121,7 +121,10 @@ extern int hppa_instruction_nullified (void); told the callee to put it, rather than have the callee tell us. */ struct value *hppa_value_returned_from_stack (struct type *valtype, CORE_ADDR addr); -#define VALUE_RETURNED_FROM_STACK(valtype,addr) \ +/* FIXME: cagney/2003-09-27: This method should now be redundant. + Instead, when "struct return convention", the inferior function + call code always saves and uses the struct return's stack address. */ +#define DEPRECATED_VALUE_RETURNED_FROM_STACK(valtype,addr) \ hppa_value_returned_from_stack (valtype, addr) extern void hppa_frame_init_saved_regs (struct frame_info *); |