diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-09-13 21:31:33 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-09-13 21:31:33 +0000 |
commit | 48436ce6b9d02c4f4f9e3628e3dbe8247841fda9 (patch) | |
tree | b10badbaf8b33470980fcfe273901727fafecf91 /gdb/value.h | |
parent | 88d89dbb0e7a3522a9f2ecf3ff452f0f62bc0433 (diff) | |
download | gdb-48436ce6b9d02c4f4f9e3628e3dbe8247841fda9.zip gdb-48436ce6b9d02c4f4f9e3628e3dbe8247841fda9.tar.gz gdb-48436ce6b9d02c4f4f9e3628e3dbe8247841fda9.tar.bz2 |
2003-09-13 Andrew Cagney <cagney@redhat.com>
* values.c (using_struct_return): Delete "function" and "funcaddr"
parameters.
* value.h (using_struct_return): Update declaration.
* infcmd.c (finish_command_continuation): Update.
(finish_command): Update.
* infcall.c (call_function_by_hand): Update.
* eval.c (evaluate_subexp_standard): Update.
Diffstat (limited to 'gdb/value.h')
-rw-r--r-- | gdb/value.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/value.h b/gdb/value.h index d50626e..afec160 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -426,8 +426,7 @@ extern struct value *value_in (struct value *element, struct value *set); extern int value_bit_index (struct type *type, char *addr, int index); -extern int using_struct_return (struct value *function, CORE_ADDR funcaddr, - struct type *value_type, int gcc_p); +extern int using_struct_return (struct type *value_type, int gcc_p); extern void set_return_value (struct value *val); |