diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-01-17 18:45:25 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-01-17 18:45:25 +0000 |
commit | 464e0365d26d6de5eaa70d14c69a3028ed222deb (patch) | |
tree | 927a546c9b3e8821652d5e8e143919b6bd2129a6 /gdb/hppa-tdep.c | |
parent | afb18d0f3dcc99608b41b805fea3526653cee1e3 (diff) | |
download | gdb-464e0365d26d6de5eaa70d14c69a3028ed222deb.zip gdb-464e0365d26d6de5eaa70d14c69a3028ed222deb.tar.gz gdb-464e0365d26d6de5eaa70d14c69a3028ed222deb.tar.bz2 |
2004-01-17 Andrew Cagney <cagney@redhat.com>
* mcore-tdep.c: Update copyright.
(mcore_extract_struct_value_address): Delete function. Update
comments.
(mcore_gdbarch_init): Update.
* mn10300-tdep.c: Update copyright.
(mn10300_extract_struct_value_address): Delete function.
(mn10300_gdbarch_init): Update.
* v850-tdep.c: Update copyright.
(v850_extract_struct_value_address): Delete.
(v850_gdbarch_init): Update.
* ns32k-tdep.c: Update copyright.
(ns32k_extract_struct_value_address): Delete.
(ns32k_gdbarch_init): Update.
* hppa-tdep.c (hppa_extract_struct_value_address): Delete.
(hppa_gdbarch_init): Update.
* vax-tdep.c: Update copyright.
(vax_extract_struct_value_address): Delete.
(vax_gdbarch_init): Update.
Diffstat (limited to 'gdb/hppa-tdep.c')
-rw-r--r-- | gdb/hppa-tdep.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 4673677..2241e7e 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -194,7 +194,6 @@ int hppa32_use_struct_convention (int gcc_p, struct type *type); int hppa64_use_struct_convention (int gcc_p, struct type *type); void hppa32_store_return_value (struct type *type, char *valbuf); void hppa64_store_return_value (struct type *type, char *valbuf); -CORE_ADDR hppa_extract_struct_value_address (char *regbuf); int hppa_cannot_store_register (int regnum); void hppa_init_extra_frame_info (int fromleaf, struct frame_info *frame); CORE_ADDR hppa_frame_chain (struct frame_info *frame); @@ -5009,26 +5008,6 @@ hppa_store_struct_return (CORE_ADDR addr, CORE_ADDR sp) { write_register (28, addr); } - -CORE_ADDR -hppa_extract_struct_value_address (char *regbuf) -{ - /* Extract from an array REGBUF containing the (raw) register state - the address in which a function should return its structure value, - as a CORE_ADDR (or an expression that can be used as one). */ - /* FIXME: brobecker 2002-12-26. - The current implementation is historical, but we should eventually - implement it in a more robust manner as it relies on the fact that - the address size is equal to the size of an int* _on the host_... - One possible implementation that crossed my mind is to use - extract_address. */ - /* FIXME: cagney/2003-09-27: This function can probably go. ELZ - writes: We cannot assume on the pa that r28 still contains the - address of the returned structure. Usually this will be - overwritten by the callee. */ - return (*(int *)(regbuf + DEPRECATED_REGISTER_BYTE (28))); -} - /* Return True if REGNUM is not a register available to the user through ptrace(). */ @@ -5208,8 +5187,6 @@ hppa_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) set_gdbarch_deprecated_max_register_raw_size (gdbarch, tdep->bytes_per_address); set_gdbarch_deprecated_max_register_virtual_size (gdbarch, 8); set_gdbarch_deprecated_store_struct_return (gdbarch, hppa_store_struct_return); - set_gdbarch_deprecated_extract_struct_value_address - (gdbarch, hppa_extract_struct_value_address); set_gdbarch_cannot_store_register (gdbarch, hppa_cannot_store_register); set_gdbarch_deprecated_init_extra_frame_info (gdbarch, hppa_init_extra_frame_info); set_gdbarch_deprecated_frame_chain (gdbarch, hppa_frame_chain); |