diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-07-03 21:27:55 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-07-03 21:27:55 +0000 |
commit | 049ee0e44d23a32d5de40a7259b50e78ff13a450 (patch) | |
tree | d182e96cbab1b1f3dd64b3245fa6a386d56eaa2c /gdb/arch-utils.h | |
parent | 4e0d9804feffffee56f37acb75ee8dbd9f67c4a6 (diff) | |
download | gdb-049ee0e44d23a32d5de40a7259b50e78ff13a450.zip gdb-049ee0e44d23a32d5de40a7259b50e78ff13a450.tar.gz gdb-049ee0e44d23a32d5de40a7259b50e78ff13a450.tar.bz2 |
* gdbarch.sh (struct regcache): Add opaque declaration.
(EXTRACT_RETURN_VALUE): New architecture method.
(EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
* gdbarch.h, gdbarch.c: Regenerate.
* arch-utils.c (legacy_extract_return_value): New function.
* arch-utils.h (legacy_extract_return_value): Declare.
* values.c (value_being_returned): Re-enable code handling
EXTRACT_STRUCT_VALUE_ADDRESS. Move
deprecated_grub_regcache_for_registers call to block handling
DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
(EXTRACT_RETURN_VALUE): Do not define.
Diffstat (limited to 'gdb/arch-utils.h')
-rw-r--r-- | gdb/arch-utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/arch-utils.h b/gdb/arch-utils.h index 8b997fb..7ceb8b7 100644 --- a/gdb/arch-utils.h +++ b/gdb/arch-utils.h @@ -39,6 +39,10 @@ extern gdbarch_frame_num_args_ftype frame_num_args_unknown; targets that don't yet implement their own breakpoint_from_pc(). */ extern gdbarch_breakpoint_from_pc_ftype legacy_breakpoint_from_pc; +/* Implementation of extract return value that grubs around in the + register cache. */ +extern gdbarch_extract_return_value_ftype legacy_extract_return_value; + /* Frameless functions not identifable. */ extern gdbarch_frameless_function_invocation_ftype generic_frameless_function_invocation_not; |