better wording

This commit is contained in:
Mauri de Souza Meneguzzo 2023-11-27 21:00:44 -03:00
parent 7488dc1402
commit 13cdce4b98
1 changed files with 3 additions and 3 deletions

View File

@ -468,11 +468,11 @@ Function is the outermost frame of the call stack. Traceback should stop at this
<p>
The <code>PCALIGN</code> pseudo-instruction is used to indicate that the next instruction should be aligned
to a specified boundary by padding with NOOP instructions.
to a specified boundary by padding with no-op instructions.
</p>
<p>
It is currently supported in: arm64, amd64, ppc64, loong64 and riscv64.
It is currently supported on arm64, amd64, ppc64, loong64 and riscv64.
For example, the start of the <code>MOVD</code> instruction below is aligned to 32 bytes:
<pre>
@ -483,7 +483,7 @@ MOVD $2, R0
<p>
If a function has one or more PCALIGN directives,
its address will be aligned to the same or coarser boundary, which is the maximum of all the
its start address will be aligned to the same or coarser boundary, which is the maximum of all the
alignment values.
</p>