diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2001-11-06 11:01:22 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2001-11-06 11:01:22 +0000 |
commit | 9e5abb068c86f04dcdd5ca82068caad4785c3a85 (patch) | |
tree | b5a3db34f57dfd28607b2aa0d0cbd7f253da1308 /gdb | |
parent | f08fa01da9c9b89d2a338c2d14f5715f772ad592 (diff) | |
download | gdb-9e5abb068c86f04dcdd5ca82068caad4785c3a85.zip gdb-9e5abb068c86f04dcdd5ca82068caad4785c3a85.tar.gz gdb-9e5abb068c86f04dcdd5ca82068caad4785c3a85.tar.bz2 |
* gdb.texinfo (gdbarch_in_function_epilogue_p): Add documentation.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index e7c1279..8a5901a 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2001-11-06 Corinna Vinschen <vinschen@redhat.com> + + * gdb.texinfo (gdbarch_in_function_epilogue_p): Add documentation. + 2001-11-05 Michael Snyder <msnyder@redhat.com> * gdb.texinfo (info functions): Document use of backslash to diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index 3e900c5..a99546d 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -3104,6 +3104,13 @@ stack top) stack address @var{rhs}. Define this as @code{lhs < rhs} if the target's stack grows downward in memory, or @code{lhs > rsh} if the stack grows upward. +@item gdbarch_in_function_epilogue_p (@var{gdbarch}, @var{pc}) +@findex gdbarch_in_function_epilogue_p +Returns non-zero if the given @var{pc} is in the epilogue of a function. +The epilogue of a function is defined as the part of a function where +the stack frame of the function already has been destroyed up to the +final `return from function call' instruction. + @item IN_SIGTRAMP (@var{pc}, @var{name}) @findex IN_SIGTRAMP Define this to return non-zero if the given @var{pc} and/or @var{name} |