From a50ead7822bef29a45d6e660e23264d76545981b Mon Sep 17 00:00:00 2001 From: "Jose E. Marchesi" Date: Mon, 24 Jul 2023 02:20:55 +0200 Subject: [PATCH] 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 `='. --- gas/ChangeLog | 5 +++++ gas/doc/c-bpf.texi | 12 ++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) 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 -- 2.39.2