[gdb/doc] Fix negative repeat count examining memory example

The documentation for the examining memory command x contains an example:
...
You can also specify a negative repeat count to examine memory backward from
the given address.  For example, 'x/-3uh 0x54320' prints three halfwords (h)
at 0x54314, 0x54328, and 0x5431c.
...

The 0x54328 looks like a typo, which was intended to be 0x54318.

But the series uses a 4-byte distance, while the halfword size used in the
command means a 2-byte distance, so the series should be:
...
0x5431a, 0x5431c, and 0x5431e.
...

Fix this by updating the addresses in the example accordingly.

Reported here ( https://sourceware.org/pipermail/gdb/2021-November/049784.html
).
This commit is contained in:
Tom de Vries
2021-11-18 19:22:51 +01:00
parent 578c64a45a
commit 8ba97c1904

View File

@ -10912,7 +10912,7 @@ words (@samp{w}) of memory above the stack pointer (here, @samp{$sp};
You can also specify a negative repeat count to examine memory backward You can also specify a negative repeat count to examine memory backward
from the given address. For example, @samp{x/-3uh 0x54320} prints three from the given address. For example, @samp{x/-3uh 0x54320} prints three
halfwords (@code{h}) at @code{0x54314}, @code{0x54328}, and @code{0x5431c}. halfwords (@code{h}) at @code{0x5431a}, @code{0x5431c}, and @code{0x5431e}.
Since the letters indicating unit sizes are all distinct from the Since the letters indicating unit sizes are all distinct from the
letters specifying output formats, you do not have to remember whether letters specifying output formats, you do not have to remember whether