diff options
author | Michael Snyder <msnyder@specifix.com> | 2008-10-06 22:57:54 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@specifix.com> | 2008-10-06 22:57:54 +0000 |
commit | 7d0c8cad1853e59fe2966e2748e6847d0b76805c (patch) | |
tree | 607737c7731d7dc8f7300bd83df2c80d185eb898 /gdb | |
parent | 8788271f011e64124ecb66c8f4b8da726da189fc (diff) | |
download | gdb-7d0c8cad1853e59fe2966e2748e6847d0b76805c.tar.gz |
Add tweaks from review comments
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 8786b4aeac7..b7808bff1cd 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2008-09-30 Michael Snyder <msnyder@vmware.com> + + * gdb.texinfo: Add documentation for reverse execution. + Add tweaks from review comments. + 2008-07-10 Doug Evans <dje@google.com> * doc/gdb.texinfo: Document "set print symbol-loading on|off". diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index e362b31e194..de1a447ca24 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -4656,7 +4656,10 @@ Run backward to the beginning of the previous line executed in the current (innermost) stack frame. If the line contains function calls, they will be ``un-executed'' without stopping. Starting from the first line of a function, @code{reverse-next} will take you back -to the caller of that function, @emph{before} the function was called. +to the caller of that function, @emph{before} the function was called, +just as the normal @code{next} command would take you from the last +line of a function back to its return to its caller +@footnote{Unles the code is too heavily optimized.}. @kindex reverse-nexti @kindex rni @r{(@code{reverse-nexti})} |