From: Jose E. Marchesi Date: Mon, 24 Jul 2023 00:20:55 +0000 (+0200) Subject: bpf: gas: fix in manual that MOVS* pseudoc syntax uses = instead of s= X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a50ead7822bef29a45d6e660e23264d76545981b;p=binutils-gdb.git bpf: gas: fix in manual that MOVS* pseudoc syntax uses = instead of s= gas/ChangeLog: 2023-07-24 Jose E. Marchesi * doc/c-bpf.texi (BPF Instructions): The pseudoc syntax for MOVS* doesn't use `s=' but `='. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 3d9d795d06c..5538cd236b3 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2023-07-24 Jose E. Marchesi + + * doc/c-bpf.texi (BPF Instructions): The pseudoc syntax for MOVS* + doesn't use `s=' but `='. + 2023-07-24 Jose E. Marchesi * doc/c-bpf.texi (BPF Instructions): Fix pseudoc syntax for MOVS* diff --git a/gas/doc/c-bpf.texi b/gas/doc/c-bpf.texi index 43190afdf64..be29d8d2a56 100644 --- a/gas/doc/c-bpf.texi +++ b/gas/doc/c-bpf.texi @@ -264,15 +264,15 @@ Move the 64-bit value of @code{rs} in @code{rd}, or load @code{imm32} in @code{rd}. @item movs rd, rs, 8 -@itemx rd s= (s8) rs +@itemx rd = (s8) rs Move the sign-extended 8-bit value in @code{rs} to @code{rd}. @item movs rd, rs, 16 -@itemx rd s= (s16) rs +@itemx rd = (s16) rs Move the sign-extended 16-bit value in @code{rs} to @code{rd}. @item movs rd, rs, 32 -@itemx rd s= (s32) rs +@itemx rd = (s32) rs Move the sign-extended 32-bit value in @code{rs} to @code{rd}. @end table @@ -371,15 +371,15 @@ Move the 32-bit value of @code{rs} in @code{rd}, or load @code{imm32} in @code{rd}. @item mov32s rd, rs, 8 -@itemx rd s= (s8) rs +@itemx rd = (s8) rs Move the sign-extended 8-bit value in @code{rs} to @code{rd}. @item mov32s rd, rs, 16 -@itemx rd s= (s16) rs +@itemx rd = (s16) rs Move the sign-extended 16-bit value in @code{rs} to @code{rd}. @item mov32s rd, rs, 32 -@itemx rd s= (s32) rs +@itemx rd = (s32) rs Move the sign-extended 32-bit value in @code{rs} to @code{rd}. @end table