* gdbint.texinfo (Target Architecture Definition): Update

EXTRACT_STRUCT_VALUE_ADDRESS and EXTRACT_STRUCT_VALUE_ADDRESS_P.
The latter has been changed to a true predicate.
This commit is contained in:
Andrew Cagney 2001-06-29 16:21:45 +00:00
parent 855931793f
commit 83aa8bc680
2 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2001-06-28 Andrew Cagney <ac131313@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Update
EXTRACT_STRUCT_VALUE_ADDRESS and EXTRACT_STRUCT_VALUE_ADDRESS_P.
The latter has been changed to a true predicate.
2001-06-17 Eli Zaretskii <eliz@is.elta.co.il>
* annotate.texi: Add @noindent where needed. From Dmitry

View File

@ -2763,12 +2763,13 @@ into @var{valbuf}.
@item EXTRACT_STRUCT_VALUE_ADDRESS(@var{regbuf})
@findex EXTRACT_STRUCT_VALUE_ADDRESS
When @code{EXTRACT_STRUCT_VALUE_ADDRESS_P} is non-zero, this is used to extract
from an array @var{regbuf} (containing the raw register state) the
address in which a function should return its structure value, as a
@code{CORE_ADDR} (or an expression that can be used as one).
When defined, extract from the array @var{regbuf} (containing the raw
register state) the @code{CORE_ADDR} at which a function should return
its structure value.
@item EXTRACT_STRUCT_VALUE_ADDRESS_P
If not defined, @code{EXTRACT_RETURN_VALUE} is used.
@item EXTRACT_STRUCT_VALUE_ADDRESS_P()
@findex EXTRACT_STRUCT_VALUE_ADDRESS_P
Predicate for @code{EXTRACT_STRUCT_VALUE_ADDRESS}.