diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-06-22 04:27:24 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-06-22 04:27:24 +0000 |
commit | f418dd93a819d4345a3f66ebfdc40de4b0666039 (patch) | |
tree | 0a236d316cc30bb0c7e8853c147472fafc036707 /gdb/doc/agentexpr.texi | |
parent | 30e942055c56a839f58297bcc7612d89afbc73ff (diff) | |
download | gdb-f418dd93a819d4345a3f66ebfdc40de4b0666039.zip gdb-f418dd93a819d4345a3f66ebfdc40de4b0666039.tar.gz gdb-f418dd93a819d4345a3f66ebfdc40de4b0666039.tar.bz2 |
* Makefile.in (SFILES_INCLUDED): Add agentexpr.texi.
* agentexpr.texi: Retitle section, and change it to an appendix.
Comment out texinfo initialization. Factor a @var{} into two
pieces to prevent makeinfo warnings.
* gdb.texinfo: Add Agent Expressions appendix.
Diffstat (limited to 'gdb/doc/agentexpr.texi')
-rw-r--r-- | gdb/doc/agentexpr.texi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/doc/agentexpr.texi b/gdb/doc/agentexpr.texi index 0135391..79985b7 100644 --- a/gdb/doc/agentexpr.texi +++ b/gdb/doc/agentexpr.texi @@ -1,14 +1,14 @@ -\input texinfo +@c \input texinfo @c %**start of header -@setfilename agentexpr.info -@settitle GDB Agent Expressions -@setchapternewpage off +@c @setfilename agentexpr.info +@c @settitle GDB Agent Expressions +@c @setchapternewpage off @c %**end of header -Revision: $Id$ +@c Revision: $Id$ -@node The GDB Agent Expression Mechanism -@chapter The GDB Agent Expression Mechanism +@node Agent Expressions +@appendix The GDB Agent Expression Mechanism In some applications, it is not feasable for the debugger to interrupt the program's execution long enough for the developer to learn anything @@ -299,7 +299,7 @@ Pop two integers from the stack; let @var{a} be the next-to-top value, and @var{b} be the top value. Shift @var{a} left by @var{b} bits, and push the result. -@item @code{rsh_signed} (0x0a): @var{a} @var{b} @result{} @var{@code{(signed)}a>>b} +@item @code{rsh_signed} (0x0a): @var{a} @var{b} @result{} @code{(signed)}@var{a>>b} Pop two integers from the stack; let @var{a} be the next-to-top value, and @var{b} be the top value. Shift @var{a} right by @var{b} bits, inserting copies of the top bit at the high end, and push the result. |