diff options
author | Stafford Horne <shorne@gmail.com> | 2017-12-27 23:36:30 +0900 |
---|---|---|
committer | Stafford Horne <shorne@gmail.com> | 2017-12-27 23:36:30 +0900 |
commit | b67d92b06e6155a392a0c2d413f87d050880dbf4 (patch) | |
tree | b3d1258041b0a04f1f4bf3cded01739878876229 /gdb/doc | |
parent | 76bce0d1d5c4e434736ce4331bc987c7a1ee702c (diff) | |
download | gdb-b67d92b06e6155a392a0c2d413f87d050880dbf4.zip gdb-b67d92b06e6155a392a0c2d413f87d050880dbf4.tar.gz gdb-b67d92b06e6155a392a0c2d413f87d050880dbf4.tar.bz2 |
reggroups: Add test and docs for `info reg $reggroup` feature
Until now this feature has existed but was not documented. Adding docs
and tests.
gdb/ChangeLog:
yyyy-mm-dd Stafford Horne <shorne@gmail.com>
* infcmd.c (_initialize_infcmd): Add help for info reg $reggroup
and info all-registers $reggroup feature.
gdb/doc/ChangeLog:
yyyy-mm-dd Stafford Horne <shorne@gmail.com>
* gdb.texinfo (Registers): Document info reg $reggroup feature.
gdb/testsuite/ChangeLog:
yyyy-mm-dd Stafford Horne <shorne@gmail.com>
* gdb.base/reggroups.c: New file.
* gdb.base/reggroups.exp: New file.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 319e0c3..e958c23 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2017-12-27 Stafford Horne <shorne@gmail.com> + + * gdb.texinfo (Registers): Document info reg $reggroup feature. + 2017-12-15 Sergio Durigan Junior <sergiodj@redhat.com> PR cli/16224 diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 60ed80c..a16e79b 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -11023,6 +11023,11 @@ and vector registers (in the selected stack frame). Print the names and values of all registers, including floating-point and vector registers (in the selected stack frame). +@item info registers @var{reggroup} @dots{} +Print the name and value of the registers in each of the specified +@var{reggroup}s. The @var{reggoup} can be any of those returned by +@code{maint print reggroups} (@pxref{Maintenance Commands}). + @item info registers @var{regname} @dots{} Print the @dfn{relativized} value of each specified register @var{regname}. As discussed in detail below, register values are normally relative to |