diff options
| author | Luis Machado <luis.machado.foss@gmail.com> | 2025-10-11 11:43:48 +0100 |
|---|---|---|
| committer | Luis Machado <luis.machado.foss@gmail.com> | 2025-10-21 21:50:06 +0100 |
| commit | b1d1eb8ef5044c331816f0d140f67ea9704963d8 (patch) | |
| tree | f602cf5ef003b4c6d80a305346afe2e08e41e036 | |
| parent | 37ffcc8891d6f0bc953d9434d4c5ba057f60f369 (diff) | |
| download | binutils-b1d1eb8ef5044c331816f0d140f67ea9704963d8.zip binutils-b1d1eb8ef5044c331816f0d140f67ea9704963d8.tar.gz binutils-b1d1eb8ef5044c331816f0d140f67ea9704963d8.tar.bz2 | |
AArch64: Fix SME za register description
Peter Maydell and Vacha Bhavsar pointed out that we have an incorrect
description of the SME za register in the documentation. It is currently
described as a vector of SVL x SVL bytes, but that is incorrect.
What we really have is a 2-dimensional array of bytes, with each dimension
having size SVL.
Change the documentation to reflect that.
Approved-By: Eli Zaretskii <eliz@gnu.org>
| -rw-r--r-- | gdb/doc/gdb.texinfo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index da211d9..821f3ed 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -49789,8 +49789,8 @@ it should contain registers @code{ZA}, @code{SVG} and @code{SVCR}. @itemize @minus @item -@code{ZA} is a register represented by a vector of @var{svl}x@var{svl} -bytes. @xref{svl}. +@code{ZA} is a register represented by a 2-dimensional array of bytes, with each +dimension having size @var{svl}. @xref{svl}. @item @code{SVG} is a 64-bit register containing the value of @var{svg}. @xref{svg}. |
