diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-11-28 22:53:04 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-11-28 22:53:04 +0000 |
commit | 3a0c96a9966a85f4205558490e1281471c34980f (patch) | |
tree | 6b5b199df7937536be9ad316fe4283f851d64cc5 /gdb/doc | |
parent | 02331869322178ead208b8328caab67c5a77b6b3 (diff) | |
download | gdb-3a0c96a9966a85f4205558490e1281471c34980f.zip gdb-3a0c96a9966a85f4205558490e1281471c34980f.tar.gz gdb-3a0c96a9966a85f4205558490e1281471c34980f.tar.bz2 |
CARP:
Rewrite INNER_THAN so that it takes parameters.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 9fc1708..ebc0663 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +Sat Nov 28 13:45:53 1998 Andrew Cagney <cagney@b1.cygnus.com> + + * gdbint.texinfo (INNER_THAN): Update, now takes parameters. + Fri Nov 27 12:39:45 1998 Andrew Cagney <cagney@chook> * gdbint.texinfo (NO_SINGLE_STEP): Replace with diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index 1f9623b..1c5da1b 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -1346,9 +1346,11 @@ If defined, this should be a C expression or statement that fills in the This is a C statement that sets the pc of the frame pointed to by @var{prev}. [By default...] -@item INNER_THAN -Define this to be either @code{<} if the target's stack grows downward -in memory, or @code{>} is the stack grows upwards. +@item INNER_THAN (lhs,rhs) +Returns non-zero if stack address @var{lhs} is inner than (nearer to the +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 IN_SIGTRAMP (pc, name) Define this to return true if the given @var{pc} and/or @var{name} |