aboutsummaryrefslogtreecommitdiff
path: root/gdb/doc
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-06-29 16:21:45 +0000
committerAndrew Cagney <cagney@redhat.com>2001-06-29 16:21:45 +0000
commit83aa8bc680ad19de006370789c7fc093d39c50c1 (patch)
tree6d1adf7b2010b933ec8899a84f687cfe1a6909cf /gdb/doc
parent855931793f38ab395339a135008dc1b2f05fe71a (diff)
downloadgdb-83aa8bc680ad19de006370789c7fc093d39c50c1.zip
gdb-83aa8bc680ad19de006370789c7fc093d39c50c1.tar.gz
gdb-83aa8bc680ad19de006370789c7fc093d39c50c1.tar.bz2
* 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.
Diffstat (limited to 'gdb/doc')
-rw-r--r--gdb/doc/ChangeLog6
-rw-r--r--gdb/doc/gdbint.texinfo11
2 files changed, 12 insertions, 5 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index 52a923e..4e59ca4 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -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
diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo
index 3f6730b..bd0d59a 100644
--- a/gdb/doc/gdbint.texinfo
+++ b/gdb/doc/gdbint.texinfo
@@ -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}.