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/infcmd.c | |
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/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 555d772..4c74894 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1084,7 +1084,7 @@ print_return_value (int structure_return, struct type *value_type) /* We cannot determine the contents of the structure because it is on the stack, and we don't know where, since we did not initiate the call, as opposed to the call_function_by_hand case */ -#ifdef VALUE_RETURNED_FROM_STACK +#ifdef DEPRECATED_VALUE_RETURNED_FROM_STACK value = 0; ui_out_text (uiout, "Value returned has type: "); ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type)); |